{{-- Preview Banner --}} @unless($isPublished)
Preview Mode | Status: {{ match($content['preview_status'] ?? 'draft') { 'draft' => 'Draft', 'pending' => 'Pending Review', 'future' => 'Scheduled', 'private' => 'Private', default => ucfirst($content['preview_status'] ?? 'draft') } }}
@if($expiresIn)
Link expires {{ $expiresIn }}
@endif
@endunless
{{-- Back link --}} Back to Blog {{-- Featured Image --}} @if(isset($content['_embedded']['wp:featuredmedia'][0]))
{{ e($content['title']['rendered'] ?? '') }}
@endif {{-- Header --}}

{{ $content['title']['rendered'] ?? 'Untitled' }}

@if(isset($content['date'])) @endif @if(isset($content['_embedded']['author'][0])) | By {{ $content['_embedded']['author'][0]['name'] }} @endif
{{-- Content --}}
{!! $content['content']['rendered'] ?? '' !!}
{{-- Preview Footer --}} @unless($isPublished)

This is a preview. The content has not been published yet.

@else @endunless