Files
kaubuntu.re/includes/mobile-menu.php
T

63 lines
2.6 KiB
PHP
Raw Normal View History

<?php
$currentPage = basename($_SERVER['PHP_SELF']);
$isHome = ($currentPage === 'index.php' || $currentPage === '/');
?>
<!-- Menu mobile -->
<div class="mobile-menu" id="mobile-menu" role="dialog" aria-label="Menu de navigation" aria-modal="true">
<button class="mobile-menu-close" aria-label="Fermer le menu">
<i class="fas fa-times" aria-hidden="true"></i>
2025-04-09 16:17:12 +04:00
</button>
2025-07-20 14:58:36 +04:00
<nav>
<a href="/"
class="nav-item <?php echo $isHome ? 'active' : ''; ?>">
<i class="fas fa-home" aria-hidden="true"></i> Accueil
2025-04-11 07:22:18 +04:00
</a>
2025-07-20 14:58:36 +04:00
2025-04-11 07:22:18 +04:00
<hr class="nav-divider">
2025-07-20 14:58:36 +04:00
<p class="mobile-section-title">Nos réseaux</p>
2025-07-20 14:58:36 +04:00
<a href="<?php echo $isHome ? '#youtube' : 'index.php#youtube'; ?>"
class="nav-item">
<i class="fab fa-youtube icon-youtube" aria-hidden="true"></i> YouTube
</a>
<a href="<?php echo $isHome ? '#instagram' : 'index.php#instagram'; ?>"
class="nav-item">
<i class="fab fa-instagram icon-instagram" aria-hidden="true"></i> Instagram
</a>
<a href="<?php echo $isHome ? '#tiktok' : 'index.php#tiktok'; ?>"
class="nav-item">
<i class="fab fa-tiktok icon-tiktok" aria-hidden="true"></i> TikTok
</a>
<a href="<?php echo $isHome ? '#actualites' : 'index.php#actualites'; ?>"
class="nav-item">
<i class="fas fa-newspaper" aria-hidden="true"></i> Actualités
</a>
2025-07-20 14:58:36 +04:00
<?php if (defined('DONATIONS_ENABLED') && DONATIONS_ENABLED && !empty(PAYPAL_ME_URL)): ?>
2025-04-11 07:22:18 +04:00
<hr class="nav-divider">
<a href="dons.php" class="nav-item donation-nav-link <?php echo ($currentPage === 'dons.php') ? 'active' : ''; ?>">
<i class="fas fa-heart" aria-hidden="true"></i> Soutenir
2025-04-11 07:22:18 +04:00
</a>
<?php endif; ?>
</nav>
2025-07-20 14:58:36 +04:00
2025-04-11 07:22:18 +04:00
<hr class="nav-divider">
2025-07-20 14:58:36 +04:00
2025-04-11 07:22:18 +04:00
<div>
<p class="mobile-section-title">Suivez-nous</p>
2025-04-11 07:22:18 +04:00
<div class="mobile-social-icons">
<a target="_blank" rel="noopener noreferrer" href="<?php echo htmlspecialchars(YOUTUBE_URL); ?>" aria-label="YouTube">
<i class="fab fa-youtube icon-youtube" aria-hidden="true"></i>
</a>
<a target="_blank" rel="noopener noreferrer" href="<?php echo htmlspecialchars(INSTAGRAM_URL); ?>" aria-label="Instagram">
<i class="fab fa-instagram icon-instagram" aria-hidden="true"></i>
</a>
<a target="_blank" rel="noopener noreferrer" href="<?php echo htmlspecialchars(TIKTOK_URL); ?>" aria-label="TikTok">
<i class="fab fa-tiktok icon-tiktok" aria-hidden="true"></i>
</a>
2025-04-11 07:22:18 +04:00
</div>
2025-04-08 06:37:14 +04:00
</div>
2025-04-09 16:17:12 +04:00
</div>