{{-- Post Header --}}
{{-- Featured Image --}} @if($post->getFeaturedImage())
{{ $post->getTranslation('title', app()->getLocale()) }}
@endif {{-- Category & Featured Badge --}}
@if($post->category) {{ $post->category }} @endif @if($post->is_featured) Featured @endif
{{-- Share Buttons --}} @if($showShareButtons)
Share:
@endif
{{-- Title --}}

{{ $post->getTranslation('title', app()->getLocale()) }}

{{-- Meta Information --}}
@if($showAuthor && $post->author)
@if($post->author->profile_photo_url ?? false) {{ $post->author->name }} @endif By {{ $post->author->name }}
@endif @if($showDate) @endif @if($showReadingTime)
{{ $post->reading_time }} min read
@endif @if($showUpdatedDate && $post->updated_at->gt($post->published_at))
Updated {{ $post->updated_at->format('F j, Y') }}
@endif
{{-- Excerpt --}} @if($showExcerpt && $post->excerpt)
{{ $post->getTranslation('excerpt', app()->getLocale()) }}
@endif
{{-- Post Content --}}
{!! $post->getTranslation('content', app()->getLocale()) !!}
{{-- Tags --}} @if($showTags && $post->tags && count($post->tags) > 0)

Tags

@foreach($post->tags as $tag) #{{ $tag }} @endforeach
@endif {{-- Author Bio --}} @if($showAuthorBio && $post->author)
@if($post->author->profile_photo_url ?? false) {{ $post->author->name }} @endif

{{ $post->author->name }}

@if($post->author->bio ?? false)

{{ $post->author->bio }}

@endif
@endif {{-- Navigation to Other Posts --}} @if($showNavigation && ($previousPost || $nextPost)) @endif {{-- SEO & Structured Data --}} @pushOnce('meta') {{ $post->getSeoTitle() }} {{-- Open Graph --}} @if($post->getFeaturedImage()) @endif @if($post->author) @endif {{-- Twitter Card --}} @if($post->getFeaturedImage()) @endif @endPushOnce @pushOnce('structured-data') @endPushOnce
{{-- Styles for content --}} @pushOnce('styles') @endPushOnce