@php $title = 'Chronologie'; $description = "La chronologie sourcée du parcours de Te Litho Tenge Didier, de sa formation à son engagement actuel."; @endphp

Chronologie

Un parcours, année après année

Chaque étape indique son niveau de confiance documentaire. Aucune fonction n'est présentée comme actuelle sans preuve datée — le détail des sources est disponible sur chaque évènement.

@php // Chaque periode recoit sa propre ambiance (teinte issue de la meme // palette limitee — bleu Congo / or / encre / papier), pour que le // visiteur ressente le passage du temps sans qu'aucune nouvelle // couleur ne soit introduite. $ambiances = [ ['section' => 'bg-congo-950 text-paper', 'eyebrow' => 'text-gold-300', 'spine' => 'border-gold-500/40', 'year' => 'text-gold-400', 'title' => 'text-paper', 'body' => 'text-paper/75', 'meta' => 'text-paper/60'], ['section' => 'bg-paper text-ink-900', 'eyebrow' => 'text-gold-600', 'spine' => 'border-congo-800/30', 'year' => 'text-congo-800', 'title' => 'text-ink-900', 'body' => 'text-ink-700', 'meta' => 'text-ink-500'], ['section' => 'bg-congo-900 text-paper', 'eyebrow' => 'text-gold-300', 'spine' => 'border-gold-500/40', 'year' => 'text-gold-400', 'title' => 'text-paper', 'body' => 'text-paper/75', 'meta' => 'text-paper/60'], ['section' => 'bg-gold-100 text-congo-950', 'eyebrow' => 'text-gold-600', 'spine' => 'border-congo-800/30', 'year' => 'text-congo-800', 'title' => 'text-congo-950', 'body' => 'text-ink-700', 'meta' => 'text-ink-500'], ['section' => 'bg-ink-900 text-paper', 'eyebrow' => 'text-gold-300', 'spine' => 'border-gold-500/40', 'year' => 'text-gold-400', 'title' => 'text-paper', 'body' => 'text-paper/75', 'meta' => 'text-paper/60'], ]; @endphp
@foreach ($periods as $i => $period) @php $amb = $ambiances[$i % count($ambiances)]; $cover = $period->events->map(fn ($e) => $e->cover())->filter()->first(); @endphp
@if ($cover)

{{ $period->start_year }}{{ $period->end_year ? '–'.$period->end_year : ' — aujourd\'hui' }}

{{ $period->title }}

@endif
@unless ($cover)

{{ $period->start_year }}{{ $period->end_year ? '–'.$period->end_year : ' — aujourd\'hui' }}

{{ $period->title }}

@endunless

{{ $period->summary }}

Détail de cette période
    @foreach ($period->events as $event)
  1. {{ $event->year_start }}{{ $event->year_end && $event->year_end !== $event->year_start ? '–'.$event->year_end : '' }}

    {{ $event->title }}

    @if($event->function_title)

    {{ $event->function_title }}

    @endif

    {{ $event->summary }}

  2. @endforeach
@endforeach