@extends('template.'.config('settings.template').'.content.master') @section('content')

{{ $list->name }}

{{ $list->description }}

@if(count($contents) > 0) @foreach($contents as $index => $content)

{{$content->title}}

{{ $content->updated_at->diffForHumans() }}
{!! Str::limit($content->vorschau, 280) !!}
@endforeach @else
Derzeit keine Inhalte in {{ $list->name }} veröffentlicht.
@endif
@stop