hic-et-nunc/site/snippets/nav.php
Camilledenoray 7f36178a80
All checks were successful
Deploy / Deploy to Production (push) Successful in 3s
Index > CSS > mobile (round2)
2026-06-02 16:04:58 +02:00

26 lines
No EOL
853 B
PHP

<h1 class="main-title">
<a href="<?= $site->url() ?>"><span>H</span>ic et <span>N</span>unc <span>S</span>tudio</a>
</h1>
<nav class="main-menu">
<h1 class="title-nav">
<a href="<?= page('home')->url() ?>">
<span>Hic&nbsp;et&nbsp;Nunc&nbsp;Studio</span>
</a>
</h1>
<h1 class="title-nav-mobile">
<a href="">
<span>menu</span>
</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>
</nav>