Removed footer navbar

This commit is contained in:
Pontoporeia
2026-04-07 14:25:37 +02:00
parent 11a665e096
commit 547d581e26

View File

@@ -1,17 +1,5 @@
<!-- footer.php --> <!-- footer.php -->
<footer> <footer>
<nav class="years-nav">
<div class="years-scroll">
<?php if (!empty($availableYears)): ?>
<a href="index.php" class="year-link <?= !isset($year) ? 'active' : '' ?>">Tous</a>
<?php foreach ($availableYears as $y): ?>
<a href="index.php?year=<?= (int)$y ?>" class="year-link <?= isset($year) && $year == $y ? 'active' : '' ?>">
<?= htmlspecialchars($y) ?>
</a>
<?php endforeach; ?>
<?php endif; ?>
</div>
</nav>
</footer> </footer>
</body> </body>