index-main/site/templates/folders.php

60 lines
1.7 KiB
PHP
Raw Permalink Normal View History

2026-01-25 22:25:08 +01:00
<?php snippet('header') ?>
<main>
<header class="page__header">
2026-01-27 16:55:02 +01:00
2026-01-25 22:25:08 +01:00
<h2 class="page__title"><?= $page->title() ?></h2>
2026-01-25 22:42:02 +01:00
<?php if ($page->chapo()->isNotEmpty()): ?>
2026-01-27 16:55:02 +01:00
<div class="description-medium">
2026-01-25 22:42:02 +01:00
<p><?= $page->chapo() ?></p>
2026-01-25 22:25:08 +01:00
</div>
2026-01-25 22:42:02 +01:00
<?php endif ?>
2026-01-25 22:25:08 +01:00
</header>
2026-01-27 16:55:02 +01:00
<section class="container-cards">
2026-01-25 22:25:08 +01:00
2026-01-25 22:42:02 +01:00
<?php foreach ($page->children()->listed() as $folder): ?>
2026-01-27 16:55:02 +01:00
<article class="card--folder">
2026-01-25 22:42:02 +01:00
<?php if ($cover = $folder->cover()->toFile()): ?>
<figure>
<img src="<?= $cover->url() ?>" alt="<?= $folder->title()->esc() ?>">
</figure>
<?php endif ?>
2026-01-27 16:55:02 +01:00
2026-01-25 22:42:02 +01:00
<div class="content">
2026-01-27 23:06:29 +01:00
<h4 class="title"><a href="<?= $folder->url() ?>"><span class="icon"><?= svg('assets/icons/folder.svg') ?></span><?= $folder->title()->esc() ?></a></h4>
2026-01-25 22:42:02 +01:00
<?php if ($folder->description()->isNotEmpty()): ?>
2026-01-27 16:55:02 +01:00
<p class="short"><?= $folder->description()->excerpt(200) ?></p>
2026-01-25 22:42:02 +01:00
<?php endif ?>
<?php
// Compter les enquêtes associées à ce dossier
$investigationsCount = site()->find('enquetes')->children()->listed()->filter(function($investigation) use ($folder) {
return $investigation->folder()->value() === $folder->slug();
})->count();
?>
2026-01-27 16:55:02 +01:00
<ul>
<?php if ($investigationsCount > 0): ?>
<li><?= $investigationsCount ?> enquête<?= $investigationsCount > 1 ? 's' : '' ?></li>
<?php endif ?>
<li>8 impacts</li>
</ul>
2026-01-25 22:25:08 +01:00
2026-01-27 16:55:02 +01:00
</div>
<button class="btn--go-to"><a href="#" target="_blank"><?= svg('assets/icons/arrow-left.svg') ?></a></button>
2026-01-25 22:42:02 +01:00
<a class="link-block" href="<?= $folder->url() ?>"></a>
</article>
<?php endforeach ?>
2026-01-25 22:25:08 +01:00
</section>
</main>
<?php snippet('footer') ?>