{{-- Breadcrumb --}}
{{-- Catégories --}}
@if ($post->categories && count($post->categories))
@foreach ($post->categories as $cat)
{{ $cat }}
@endforeach
@endif
{{-- Titre --}}
{{ $post->title }}
@if ($post->excerpt)
{{ $post->excerpt }}
@endif
{{-- Meta date --}}
{!! icon($_ic_clock, 'rgba(255,255,255,.5)', 13) !!}
{{ $post->published_at?->format('d M Y') }}
@if ($post->tags && count($post->tags))
{!! icon($_ic_tag, 'rgba(255,255,255,.5)', 13) !!}
{{ implode(', ', array_slice($post->tags, 0, 3)) }}
@endif
{{-- Image à la une en chevauchement --}}
@if ($post->featured_image)