mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-07 03:29:19 +02:00
- Flat purple-gradient nav bar with POSTERG/RÉPERTOIRE/À PROPOS links - Full-width search bar with icon, bottom-border only, below nav - Home: white bg, media card grid (thumbnail + author/title label below) - Répertoire: 4-column index (Années/Catégories/Étudiantes/Mots-clés) - TFE: 2-column layout (large text left, media right) - À Propos: 2-column, large monospace text, new apropos.php page - Admin: dark theme (#1a1a1a), purple gradient nav, bottom-border inputs - New shared partials: templates/nav.php, templates/search-bar.php - Rewrote all CSS: common, main, search, tfe, apropos, admin
16 lines
630 B
PHP
16 lines
630 B
PHP
<?php
|
|
// nav.php — shared public navigation bar
|
|
// Usage: include this partial from any public page
|
|
// Provide $currentPage variable to mark active links (optional)
|
|
$_navCurrent = $currentNav ?? '';
|
|
?>
|
|
<nav class="site-nav">
|
|
<a class="site-nav__logo" href="/index.php">Posterg</a>
|
|
<div class="site-nav__links">
|
|
<a class="site-nav__link <?= ($_navCurrent === 'repertoire') ? 'site-nav__link--active' : '' ?>"
|
|
href="/search.php">Répertoire</a>
|
|
</div>
|
|
<a class="site-nav__right <?= ($_navCurrent === 'apropos') ? 'site-nav__link--active' : '' ?>"
|
|
href="/apropos.php">À Propos</a>
|
|
</nav>
|