index-main/site/snippets/nav.php
Julie Blanc bdb60646d0
All checks were successful
Deploy / Deploy to Production (push) Successful in 14s
investigation responsive
2026-02-23 17:34:16 +01:00

34 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id="site-menu">
<p class="baseline">Index est une ONG dinvestigation numérique au service du public,
de la vérité et de la justice.</p>
<form aria-label="Formulaire de recherche" class="search-form">
<span class="icon"><?= svg('assets/icons/search.svg') ?></span>
<input type="text" id="search" class="input" placeholder="Rechercher" list="keywords-list">
<datalist id="keywords-list">
<?php if ($db = page('database')): ?>
<?php foreach ($db->keywords()->split() as $keyword): ?>
<option value="<?= esc($keyword) ?>">
<?php endforeach ?>
<?php endif ?>
</datalist>
</form>
<nav>
<ul>
<li class="support highlight"><a href="#">Soutenez-nous</a></li>
<li class="highlight"><a href="/enquetes">Enquêtes</a></li>
<li class="highlight"><a href="/impacts">Impact</a></li>
<li><a href="/dossiers">Dossiers</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">À propos</a></li>
<li><a href="#">Ressources</a></li>
<li><a href="#">Newsletter</a></li>
<li><a href="#">Mentions légales</a></li>
</ul>
</nav>
<?php snippet('socials') ?>
</div>