aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/navigation_links.php
blob: 15404917616dc59be1b4320cd1ad1eff69c057c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
use Digitigrade\Router;
?>
<ul>
    <?php foreach ($links as $href => $name): ?>
        <?php if (Router::getInstance()->getCurrentPath() == $href): ?>
            <li><span class="navlink disabled"><?= $name ?></span></li>
        <?php else: ?>
            <li><a class="navlink" href="<?= $href ?>"><?= $name ?></a></li>
        <?php endif; ?>
    <?php endforeach; ?>
</ul>