hic-et-nunc/site/snippets/nav.php

26 lines
853 B
PHP
Raw Normal View History

2026-05-14 17:22:34 +02:00
<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>
2026-06-02 16:04:58 +02:00
<h1 class="title-nav-mobile">
<a href="">
<span>menu</span>
</a>
</h1>
2026-05-14 17:22:34 +02:00
<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>