diff --git a/content/lists/aktuelles.blade.php b/content/lists/aktuelles.blade.php new file mode 100644 index 0000000..536b3df --- /dev/null +++ b/content/lists/aktuelles.blade.php @@ -0,0 +1,88 @@ +@extends('template.'.config('settings.template').'.content.master') +@section('content') + + + + +
+
+ +
+
+

{{ $listModel->name }}

+ + @if (isset($listModel)) + {{ $listModel->description }} + @endif +
+
+
+
+
+ + + @foreach($nachrichten as $nach) + +
+
+ @if ($nach->image) + + @endif +
+

+ {{$nach->title}} +

+ + {{date('d.m.Y H:i', strtotime($nach->created_at))}} + +

+ {!! isset($nach->additional_fields['4']) ? $nach->additional_fields['4'] : 'keine Angaben' !!} +

+ +
+ +
+
+ + + + @endforeach + + + +
+
+
+
+
+
+
+
+
+ + +
+
+ + + + + +@stop