@php $title = $period->title; $description = $period->summary; @endphp

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

{{ $period->title }}

{{ $period->summary }}

@foreach ($periods as $p) {{ $p->title }} @endforeach
@forelse ($period->events as $event) @php $cover = $event->cover(); @endphp
@if($cover)
@endif
{{ $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 @if($event->location)

{{ $event->location }}

@endif @if($event->context)

{{ $event->context }}

@endif

{{ $event->summary }}

@if($event->body)
{!! nl2br(e($event->body)) !!}
@endif @if($event->source_label)

Source : @if($event->source_url) {{ $event->source_label }} @else {{ $event->source_label }} @endif

@endif
@empty

Aucun évènement publié pour cette période pour le moment.

@endforelse