-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.php
executable file
·26 lines (26 loc) · 1.09 KB
/
nav.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<nav class="navbar navbar-expand-lg navbar-light" id="mainNav">
<div class="container px-4 px-lg-5">
<a class="navbar-brand" href="<?= eat($url); ?>">
<?= $site->title; ?>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<?= i('Menu'); ?> <i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto py-4 py-lg-0">
<li class="nav-item">
<a class="<?= $site->is('home') ? 'active ' : ""; ?>nav-link px-lg-3 py-3 py-lg-4" href="<?= eat($url); ?>">
<?= i('Home'); ?>
</a>
</li>
<?php foreach ($links as $link): ?>
<li class="nav-item">
<a class="<?= $link->current ? 'active ' : ""; ?>nav-link px-lg-3 py-3 py-lg-4" href="<?= eat($link->url); ?>">
<?= $link->title; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
</nav>