2026-01-27 16:55:02 +01:00
|
|
|
|
2026-01-25 22:42:02 +01:00
|
|
|
<?php snippet('header') ?>
|
|
|
|
|
<main>
|
|
|
|
|
|
|
|
|
|
<header class="page__header">
|
2026-01-27 16:55:02 +01:00
|
|
|
<p class="page__type">Dossier</p>
|
2026-01-25 22:42:02 +01:00
|
|
|
<h2 class="page__title"><?= $page->title() ?></h2>
|
|
|
|
|
|
|
|
|
|
<?php if ($page->description()->isNotEmpty()): ?>
|
2026-01-27 16:55:02 +01:00
|
|
|
<div class="description">
|
2026-01-25 22:42:02 +01:00
|
|
|
<p><?= $page->description() ?></p>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
|
// Récupérer les enquêtes associées à ce dossier
|
|
|
|
|
$investigations = site()->find('enquetes')->children()->listed()->filter(function($investigation) use ($page) {
|
|
|
|
|
return $investigation->folder()->value() === $page->slug();
|
|
|
|
|
});
|
|
|
|
|
?>
|
|
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
|
|
|
|
|
<div class="btn--group" id="nav-folder">
|
|
|
|
|
<button class="btn--small"><a href="#section__investigations">Enquêtes <span class="arrow"><?= svg('assets/icons/arrow-left.svg') ?></span></a></button>
|
|
|
|
|
<button class="btn--small"><a href="#section__impacts">Impacts <span class="arrow"><?= svg('assets/icons/arrow-left.svg') ?></span></a></button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="content-folder">
|
|
|
|
|
|
|
|
|
|
|
2026-01-25 22:42:02 +01:00
|
|
|
<?php if ($investigations->isNotEmpty()): ?>
|
2026-01-27 18:33:27 +01:00
|
|
|
<section class="container-cards" id="section__investigations">
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<h3 class="container__title">2 enquêtes</h3>
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<?php foreach ($investigations as $investigation): ?>
|
|
|
|
|
<article class="card--article">
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<?php if ($cover = $investigation->cover()->toFile()): ?>
|
|
|
|
|
<figure>
|
|
|
|
|
<img src="<?= $cover->url() ?>" alt="<?= $investigation->title()->esc() ?>">
|
|
|
|
|
</figure>
|
|
|
|
|
<?php endif ?>
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<div class="content">
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<h4 class="title"><a href="<?= $investigation->url() ?>"><?= $investigation->title()->esc() ?></a></h4>
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<?php if ($investigation->chapo()->isNotEmpty()): ?>
|
|
|
|
|
<p class="description"><?= $investigation->chapo()->excerpt(200) ?></p>
|
2026-01-25 22:42:02 +01:00
|
|
|
<?php endif ?>
|
|
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<dl class="dl">
|
|
|
|
|
<?php if ($investigation->incidentDate()->isNotEmpty()): ?>
|
|
|
|
|
<div class="dl__group">
|
|
|
|
|
<dt>Date de l'incident</dt>
|
|
|
|
|
<dd><time datetime="<?= $investigation->incidentDate()->toDate('yyyy-MM-dd') ?>"><?= $investigation->incidentDate()->toDate('d MMMM yyyy', 'fr_FR') ?></time></dd>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
<?php if ($partners = $investigation->partners()->toStructure()): ?>
|
|
|
|
|
<?php if ($partners->isNotEmpty()): ?>
|
|
|
|
|
<div class="dl__group">
|
|
|
|
|
<dt>Partenaire(s)</dt>
|
|
|
|
|
<dd>
|
|
|
|
|
<?php $partnerNames = [] ?>
|
|
|
|
|
<?php foreach ($partners as $partner): ?>
|
|
|
|
|
<?php $partnerNames[] = $partner->name()->value() ?>
|
|
|
|
|
<?php endforeach ?>
|
|
|
|
|
<?= implode(', ', $partnerNames) ?>
|
|
|
|
|
</dd>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
<?php if ($investigation->incidentLocation()->isNotEmpty()): ?>
|
|
|
|
|
<div class="dl__group">
|
|
|
|
|
<dt>Lieu de l'incident</dt>
|
|
|
|
|
<dd><?= $investigation->incidentLocation()->esc() ?></dd>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif ?>
|
2026-01-27 18:51:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
</dl>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-01-27 18:51:58 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<?php if ($keywords = $investigation->keywords()->split()): ?>
|
2026-01-27 18:51:58 +01:00
|
|
|
<div class="keywords-wrapper">
|
|
|
|
|
<ul class="keywords">
|
|
|
|
|
<?php foreach ($keywords as $keyword): ?>
|
|
|
|
|
<li><a href="#keyword" target="_blank"><?= esc($keyword) ?></a></li>
|
|
|
|
|
<?php endforeach ?>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<a class="link-block" href="<?= $investigation->url() ?>"></a>
|
|
|
|
|
</article>
|
|
|
|
|
<?php endforeach ?>
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
<?php else: ?>
|
|
|
|
|
<p>Aucune enquête associée à ce dossier pour le moment.</p>
|
|
|
|
|
<?php endif ?>
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<section id="section__impacts">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<h3 class="container__title">4 impacts</h3>
|
|
|
|
|
|
|
|
|
|
<!-- Contenu statique temporaire - sera dynamique quand les pages impacts seront créées -->
|
|
|
|
|
<div class="card--impact" data-impact-type="media">
|
|
|
|
|
<p class="tag">Médiatique</p>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<p>12 articles et reprises</p>
|
|
|
|
|
<p>1.5M de vues cumulées</p>
|
|
|
|
|
</div>
|
|
|
|
|
<details class="open-graph__details">
|
|
|
|
|
<summary><p class="summary-inner">Détails <span class="arrow-details"><?= svg('assets/icons/arrow-details.svg') ?></span><p></summary>
|
|
|
|
|
<div class="open-graph__inner">
|
|
|
|
|
<?php snippet('card-open-graph') ?>
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
2026-01-25 22:42:02 +01:00
|
|
|
</div>
|
|
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<div class="card--impact" data-impact-type="judiciaire">
|
|
|
|
|
<p class="tag">Judiciaire</p>
|
|
|
|
|
<p class="date">12 Dec 2025</p>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<p >La justice israélienne déclare ouvrir une enquête sur "les circonstances de la mort de Nidal et Khaled Amirah".
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2026-01-25 22:42:02 +01:00
|
|
|
</div>
|
|
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<div class="card--impact" data-impact-type="judiciaire">
|
|
|
|
|
<p class="tag">Judiciaire</p>
|
|
|
|
|
<p class="date">12 Dec 2025</p>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<p >La justice israélienne déclare ouvrir une enquête sur "les circonstances de la mort de Nidal et Khaled Amirah"
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
2026-01-25 22:42:02 +01:00
|
|
|
|
2026-01-27 18:33:27 +01:00
|
|
|
<div class="card--impact" data-impact-type="public">
|
|
|
|
|
<p class="tag">Judiciaire</p>
|
|
|
|
|
<p class="date">12 Dec 2025</p>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<p>Index présente une série d'enquêtes récentes au Festival du Réel 2025. <a class="see-more" href="#">Voir plus</a>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-01-25 22:42:02 +01:00
|
|
|
</section>
|
2026-01-27 18:33:27 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
2026-01-25 22:42:02 +01:00
|
|
|
|
|
|
|
|
</main>
|
|
|
|
|
<?php snippet('footer') ?>
|