@extends('layouts.app') @section('title', $post->title . ' — HAndipartner') @section('description', $post->excerpt ?: Str::limit(strip_tags($post->content), 160)) @php if (!function_exists('icon')) { function icon(string $paths, string $color = '#0D2B5E', int $size = 20, string $extra = ''): string { return '' .$paths.''; } } $_ic_arrow = ''; $_ic_book = ''; $_ic_mail = ''; $_ic_zap = ''; $_ic_clock = ''; $_ic_tag = ''; $_ic_share = ''; // Identité navy unifiée (premium, cohérent sur tout le site) $catGradient = ['#091E42','#0D2B5E']; @endphp @section('content') {{-- ══ HERO ARTICLE ══ --}}
{{-- Grille de fond --}}
{{-- 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)
{{ $post->title }}
@endif
{{-- ══ CONTENU ARTICLE ══ --}}
{!! $post->content !!}
{{-- Tags --}} @if ($post->tags && count($post->tags))
@foreach ($post->tags as $tag) # {{ $tag }} @endforeach
@endif
{{-- ══ CTA INLINE ══ --}}

Optimisez votre contribution AGEFIPH

Nos experts analysent votre situation gratuitement et identifient vos leviers d'optimisation, sous 48 heures.

Demander un audit gratuit
{{-- ══ ARTICLES LIÉS ══ --}} @if ($related->count())
@endif @endsection