41 lines
1.8 KiB
PHP
41 lines
1.8 KiB
PHP
<?php
|
|
$currentPage = basename($_SERVER['PHP_SELF'], '.php');
|
|
?>
|
|
<!-- Dolna belka nawigacyjna (Bottom Navigation Bar - zawsze widoczna na dole) -->
|
|
<nav class="bottom-nav-bar">
|
|
<a href="index.php" class="bottom-nav-item <?= in_array($currentPage, ['index', 'trip-details']) ? 'active' : '' ?>">
|
|
<i class='bx <?= in_array($currentPage, ['index', 'trip-details']) ? 'bxs-compass' : 'bx-compass' ?>'></i>
|
|
<span>Wycieczki</span>
|
|
</a>
|
|
|
|
<a href="availability.php" class="bottom-nav-item <?= $currentPage === 'availability' ? 'active' : '' ?>">
|
|
<i class='bx <?= $currentPage === 'availability' ? 'bxs-calendar' : 'bx-calendar' ?>'></i>
|
|
<span>Dostępność</span>
|
|
</a>
|
|
|
|
<a href="courses.php" class="bottom-nav-item <?= $currentPage === 'courses' ? 'active' : '' ?>">
|
|
<i class='bx <?= $currentPage === 'courses' ? 'bxs-book-open' : 'bx-book-open' ?>'></i>
|
|
<span>Szkolenia</span>
|
|
</a>
|
|
|
|
<a href="profile.php" class="bottom-nav-item <?= in_array($currentPage, ['profile', 'profile-edit']) ? 'active' : '' ?>">
|
|
<i class='bx <?= in_array($currentPage, ['profile', 'profile-edit']) ? 'bxs-user-pin' : 'bx-user' ?>'></i>
|
|
<span>Mój Profil</span>
|
|
<span class="nav-indicator" title="Profil wymaga uzupełnienia"></span>
|
|
</a>
|
|
</nav>
|
|
|
|
</div><!-- /.phone-screen -->
|
|
</div><!-- /.phone-viewport-wrapper -->
|
|
|
|
<!-- Lokalne skrypty Bootstrap (z projektu Magico, bez jsdelivr) -->
|
|
<script src="../../assets/vendor/js/bootstrap.js"></script>
|
|
|
|
<!-- Magico Feedback JS -->
|
|
<?php if (!empty($enablePrototypeComments)): ?>
|
|
<script src="../../assets/js/comments.js"></script>
|
|
<?php endif; ?>
|
|
|
|
</body>
|
|
</html>
|