2025-10-07 16:21:26 +02:00
|
|
|
|
<?php snippet('header') ?>
|
2026-01-06 11:19:25 +01:00
|
|
|
|
<main>
|
2026-01-13 12:13:02 +01:00
|
|
|
|
|
2026-01-27 22:24:47 +01:00
|
|
|
|
<section class="section--home" id="home__hero">
|
|
|
|
|
|
|
|
|
|
|
|
<div class="section--inner">
|
|
|
|
|
|
<p class="baseline">Index est une ONG d’investigation numérique, au service du public, de la vérité et de la justice.</p>
|
2026-01-13 12:13:02 +01:00
|
|
|
|
|
2026-02-07 16:28:59 +01:00
|
|
|
|
<button class="btn--home">
|
2026-01-27 19:09:56 +01:00
|
|
|
|
<a href="#">
|
|
|
|
|
|
<span class="text">En savoir plus</span>
|
|
|
|
|
|
<span class="icon"><?= svg('assets/icons/arrow-left.svg') ?></span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</button>
|
2026-01-27 22:24:47 +01:00
|
|
|
|
|
|
|
|
|
|
</div>
|
2026-01-13 12:13:02 +01:00
|
|
|
|
</section>
|
|
|
|
|
|
|
2026-01-27 19:09:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
2026-01-13 12:18:22 +01:00
|
|
|
|
<section class="section--home" id="home__investigations">
|
2026-01-13 12:13:02 +01:00
|
|
|
|
<div class="section--inner">
|
|
|
|
|
|
|
2026-01-27 19:09:56 +01:00
|
|
|
|
<div class="col-left">
|
2026-01-27 23:06:29 +01:00
|
|
|
|
<?php $investigationsPage = site()->find('enquetes'); ?>
|
|
|
|
|
|
<h2 class="title-section"><?= $investigationsPage ? $investigationsPage->title() : 'Enquêtes' ?></h2>
|
|
|
|
|
|
<?php if ($investigationsPage && $investigationsPage->chapo()->isNotEmpty()): ?>
|
2026-01-27 21:28:14 +01:00
|
|
|
|
<p class="description-section">
|
2026-01-27 23:06:29 +01:00
|
|
|
|
<?= $investigationsPage->chapo() ?>
|
2026-01-27 19:09:56 +01:00
|
|
|
|
</p>
|
2026-01-27 23:06:29 +01:00
|
|
|
|
<?php endif ?>
|
2026-02-07 16:28:59 +01:00
|
|
|
|
<button class="btn--home">
|
2026-01-27 19:09:56 +01:00
|
|
|
|
<a href="/enquetes">
|
|
|
|
|
|
<span class="text">Voir les enquêtes</span>
|
|
|
|
|
|
<span class="icon"><?= svg('assets/icons/arrow-left.svg') ?></span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="col-right">
|
|
|
|
|
|
|
2026-01-27 19:58:53 +01:00
|
|
|
|
<div class="home-investigations-slider swiper">
|
|
|
|
|
|
<div class="swiper-wrapper">
|
2026-01-27 19:09:56 +01:00
|
|
|
|
|
2026-01-29 20:57:17 +01:00
|
|
|
|
<?php
|
|
|
|
|
|
$latestInvestigations = site()->find('enquetes')->children()->listed()->sortBy('created', 'desc')->limit(3);
|
|
|
|
|
|
foreach ($latestInvestigations as $investigation):
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="swiper-slide">
|
|
|
|
|
|
<div class="swiper-slide__inner">
|
|
|
|
|
|
<article class="card--article">
|
|
|
|
|
|
|
|
|
|
|
|
<?php if ($cover = $investigation->cover()->toFile()): ?>
|
|
|
|
|
|
<figure>
|
|
|
|
|
|
<img src="<?= $cover->url() ?>" alt="<?= $investigation->title()->esc() ?>">
|
|
|
|
|
|
</figure>
|
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
|
|
|
|
|
|
|
|
<h4 class="title"><a href="<?= $investigation->url() ?>"><?= $investigation->title()->esc() ?></a></h4>
|
|
|
|
|
|
|
2026-01-30 12:27:44 +01:00
|
|
|
|
<time class="time-alone" datetime="<?= $investigation->incidentDate()->toDate('yyyy-MM-dd') ?>"><?= $investigation->incidentDate()->toDate('d MMMM yyyy', 'fr_FR') ?></time>
|
|
|
|
|
|
|
2026-01-29 20:57:17 +01:00
|
|
|
|
<?php if ($investigation->chapo()->isNotEmpty()): ?>
|
|
|
|
|
|
<p class="description"><?= $investigation->chapo()->excerpt(200) ?></p>
|
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?php if ($keywords = $investigation->keywords()->split()): ?>
|
|
|
|
|
|
<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 ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?php if ($investigation->pinned()->toBool()): ?>
|
|
|
|
|
|
<div class="pin"><?= svg('assets/icons/pin.svg') ?></div>
|
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
|
|
<a class="link-block" href="<?= $investigation->url() ?>"></a>
|
|
|
|
|
|
</article>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<?php endforeach ?>
|
2026-01-27 19:09:56 +01:00
|
|
|
|
|
2026-01-27 19:58:53 +01:00
|
|
|
|
</div> <!-- swiper-wrapper -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Navigation buttons -->
|
|
|
|
|
|
<div class="swiper-button-prev"></div>
|
|
|
|
|
|
<div class="swiper-button-next"></div>
|
2026-01-27 19:09:56 +01:00
|
|
|
|
|
2026-01-27 19:58:53 +01:00
|
|
|
|
<!-- Pagination -->
|
|
|
|
|
|
<div class="swiper-pagination"></div>
|
|
|
|
|
|
</div> <!-- home-investigations-slider -->
|
2026-01-27 19:09:56 +01:00
|
|
|
|
|
|
|
|
|
|
</div> <!-- col-right-->
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<section class="section--home" id="home__impacts">
|
|
|
|
|
|
<div class="section--inner">
|
|
|
|
|
|
|
|
|
|
|
|
<div class="col-left">
|
2026-01-27 23:06:29 +01:00
|
|
|
|
<?php $impactsPage = site()->find('impacts'); ?>
|
|
|
|
|
|
<h2 class="title-section"><?= $impactsPage ? $impactsPage->title() : 'Impacts' ?></h2>
|
|
|
|
|
|
<?php if ($impactsPage && $impactsPage->chapo()->isNotEmpty()): ?>
|
2026-01-27 21:28:14 +01:00
|
|
|
|
<p class="description-section">
|
2026-01-27 23:06:29 +01:00
|
|
|
|
<?= $impactsPage->chapo() ?>
|
2026-01-27 19:09:56 +01:00
|
|
|
|
</p>
|
2026-01-27 23:06:29 +01:00
|
|
|
|
<?php endif ?>
|
2026-02-07 16:28:59 +01:00
|
|
|
|
<button class="btn--home">
|
2026-01-27 23:06:29 +01:00
|
|
|
|
<a href="/impacts">
|
2026-01-27 19:09:56 +01:00
|
|
|
|
<span class="text">Voir les impacts</span>
|
|
|
|
|
|
<span class="icon"><?= svg('assets/icons/arrow-left.svg') ?></span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<div class="col-right grid-masonry">
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<div class="grid-sizer"></div>
|
2026-01-30 12:27:44 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<!-- Contenu statique temporaire -->
|
|
|
|
|
|
|
|
|
|
|
|
<div class="card--impact has-link" data-impact-type="judiciaire">
|
|
|
|
|
|
<div class="pin"><?= svg('assets/icons/pin.svg') ?></div>
|
|
|
|
|
|
<h3 class="title">L’analyse d’INdex fait l’objet d’un reportage par CNN</h3>
|
|
|
|
|
|
<ul class="keywords">
|
|
|
|
|
|
<li class="tag">Judiciaire</li>
|
|
|
|
|
|
<li><a href="#keyword" target="_blank">Reportage</a></li>
|
|
|
|
|
|
<li><a href="#keyword" target="_blank">Monde</a></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<p class="date">24 janvier 2026</p>
|
|
|
|
|
|
<ul class="investigations">
|
|
|
|
|
|
<li><a href="/enquetes/l-execution-de-nidal-et-khaled-amirah-a-naplouse">L'homicide de Renée Goof</a></li>
|
2026-01-30 12:27:44 +01:00
|
|
|
|
</ul>
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<a class="link-block" href="#" target="_blank"></a>
|
2026-01-27 19:58:53 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<div class="card--impact has-link" data-impact-type="judiciaire">
|
|
|
|
|
|
<div class="pin"><?= svg('assets/icons/pin.svg') ?></div>
|
|
|
|
|
|
<h3 class="title">Ouverture d’une information judiciaire</h3>
|
2026-01-28 01:15:51 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<ul class="keywords">
|
|
|
|
|
|
<li class="tag">Judiciaire</li>
|
|
|
|
|
|
<li><a href="#keyword" target="_blank">Refus d’obtempérer</a></li>
|
|
|
|
|
|
<li><a href="#keyword" target="_blank">Homicide</a></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
<p class="date">24 janvier 2026</p>
|
|
|
|
|
|
<ul class="investigations">
|
|
|
|
|
|
<li><a href="/enquetes/l-execution-de-nidal-et-khaled-amirah-a-naplouse">L'homicide de Renée Goof</a></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<a class="link-block" href="#" target="_blank"></a>
|
2026-01-27 19:58:53 +01:00
|
|
|
|
</div>
|
2026-01-30 12:27:44 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<div class="card--impact has-link" data-impact-type="judiciaire">
|
|
|
|
|
|
<div class="pin"><?= svg('assets/icons/pin.svg') ?></div>
|
|
|
|
|
|
<figure><img src="/assets/images/SequenceOrbit_Finale_1245.png"></figure>
|
|
|
|
|
|
<h3 class="title">LA RECONSTITUTION D’INDEX PROJETÉE EN AUDIENCE AU TRIBUNAL DE BOBIGNY</h3>
|
|
|
|
|
|
<ul class="keywords">
|
|
|
|
|
|
<li class="tag">Judiciaire</li>
|
|
|
|
|
|
<li><a href="#keyword" target="_blank">restitution</a></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<p class="date">24 janvier 2026</p>
|
|
|
|
|
|
<ul class="investigations">
|
|
|
|
|
|
<li><a href="/enquetes/l-execution-de-nidal-et-khaled-amirah-a-naplouse">L'homicide de Renée Goof</a></li>
|
2026-01-28 01:15:51 +01:00
|
|
|
|
</ul>
|
|
|
|
|
|
<a class="link-block" href="#" target="_blank"></a>
|
2026-01-27 19:58:53 +01:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-01-30 12:27:44 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<div class="card--impact has-link" data-impact-type="judiciaire">
|
|
|
|
|
|
<h3 class="title">INDEX DANS L’ÉMISSION “LE DESSOUS DES IMAGES” (ARTE)</h3>
|
|
|
|
|
|
<ul class="keywords">
|
|
|
|
|
|
<li class="tag">Médiathique</li>
|
|
|
|
|
|
<li><a href="#keyword" target="_blank">Reportage</a></li>
|
|
|
|
|
|
<li><a href="#keyword" target="_blank">Arte</a></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<p class="date">24 janvier 2026</p>
|
2026-01-30 12:27:44 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<ul class="investigations">
|
|
|
|
|
|
<li><a href="/enquetes/l-execution-de-nidal-et-khaled-amirah-a-naplouse">L'homicide de Renée Goof</a></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<a class="link-block" href="#" target="_blank"></a>
|
|
|
|
|
|
</div>
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<div class="card--impact has-link" data-impact-type="judiciaire">
|
|
|
|
|
|
<h3 class="title">“CONTRE-ENQUÊTES NUMÉRIQUES” : CONFÉRENCE À L’ENSAD (PARIS)</h3>
|
|
|
|
|
|
<ul class="keywords">
|
|
|
|
|
|
<li class="tag">Public</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<p class="date">24 janvier 2026</p>
|
|
|
|
|
|
<a class="link-block" href="#" target="_blank"></a>
|
|
|
|
|
|
</div>
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<div class="card--impact" data-impact-type="media">
|
|
|
|
|
|
<h3 class="title">Index dans le Monde</h3>
|
|
|
|
|
|
<p class="tag">Médiatique</p>
|
|
|
|
|
|
<p class="date">24 janvier 2026</p>
|
|
|
|
|
|
<?php snippet('card-open-graph') ?>
|
|
|
|
|
|
</div>
|
2026-01-27 19:09:56 +01:00
|
|
|
|
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
<div class="card--impact has-link" data-impact-type="judiciaire">
|
|
|
|
|
|
<figure><img src="/assets/images/eclairages.png"></figure>
|
|
|
|
|
|
<h3 class="title">“CONTRE-ENQUÊTES NUMÉRIQUES” : CONFÉRENCE À L’ENSAD (PARIS)</h3>
|
|
|
|
|
|
<ul class="keywords">
|
|
|
|
|
|
<li class="tag">Public</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
<p class="date">24 janvier 2026</p>
|
|
|
|
|
|
<a class="link-block" href="#" target="_blank"></a>
|
|
|
|
|
|
</div>
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
2026-01-27 19:09:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
</div>
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
2026-02-09 15:15:27 +01:00
|
|
|
|
</section>
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-01-13 12:13:02 +01:00
|
|
|
|
|
2026-01-27 19:58:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
2026-01-06 11:19:25 +01:00
|
|
|
|
</main>
|
2025-10-07 16:21:26 +02:00
|
|
|
|
<?php snippet('footer') ?>
|