7 lines
208 B
PHP
7 lines
208 B
PHP
<nav>
|
|
<ul>
|
|
<?php foreach($nav_routes as $title => $path): ?>
|
|
<li class="<?= is_selected($path, $route_path) ?>"><a href="<?= full_url($path) ?>"><?= $title ?></a></li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
</nav>
|