@if ($post->layoutItems()->exists()) @include('themes.starter.pages.'.$post->page) @else

{{ $post->title }}

@if ($post->settings['show_created_at'])
@date ($post->created_at->tz($page['timezone']))
@endif @if ($post->settings['show_owner'])
{{ $post->owner_name }}
@endif @if ($post->settings['show_excerpt'])
{!! $post->excerpt !!}
@endif
@if ($post->settings['show_image'] && $post->image) @endif {!! $post->content !!} @if ($post->getExtraFieldByAlias('translations')) Translations: {{ $post->getExtraFieldByAlias('translations') }} @endif
@if ($post->settings['show_categories'] && count($post->categories))

Categories
@foreach ($post->categories as $category) {{ $category->name }} @endforeach

@endif @if ($post->settings['allow_comments']) @include('themes.starter.partials.post.comments') @endif @endif