hic-et-nunc/site/snippets/mobile-menu.php
Camilledenoray afb7c00960
All checks were successful
Deploy / Deploy to Production (push) Successful in 2m1s
Save before pull rebase
2026-06-10 15:59:22 +02:00

23 lines
No EOL
728 B
PHP

<div id="mobile-menu-wrapper">
<button id="mobile-menu-toggle">Menu</button>
</div>
<nav id="mobile-menu">
<h1 class="title-nav">
<a href="<?= page('home')->url() ?>">
Hic&nbsp;et&nbsp;Nunc&nbsp;Studio
</a>
</h1>
<ul>
<li>
<a class="nav-item-home" href="<?= page('home')->url() ?>"><?= page('home')->title() ?></a>,&nbsp;
</li>
<li>
<a class="nav-item-projects" href="<?= page('index')->url() ?>"><?= page('index')->title() ?></a>,&nbsp;
</li>
<li>
<a class="nav-item-about" href="<?= page('infos')->url() ?>"><?= page('infos')->title() ?></a>
</li>
</ul>
<div class="backdrop"></div>
</nav>