hakurei.app/templates/header.html
Ophestra 34b55506fe
All checks were successful
Static / Flake checks (push) Successful in 21s
Static / Create distribution (push) Successful in 40s
static: remove faq page for now
This will be useful after we get some kind of userbase. Omit this for
now since there is nothing to put there.
2025-06-29 03:46:15 +09:00

12 lines
707 B
HTML

<header>
<nav id="site-menu">
<ul>
<li {% if current_page == "/" %}aria-current="page"{% endif %}><a href="/"><img src="[[path|/mask-icon.svg]]" alt=""/>Hakurei</a></li>
<li {% if current_page == "package" %}aria-current="page"{% endif %}><a href="/package.html">Package</a></li>
<li {% if current_page == "install" %}aria-current="page"{% endif %}><a href="/install.html">Install</a></li>
<!-- <li {% if current_page == "faq" %}aria-current="page"{% endif %}><a href="/faq.html">FAQ</a></li> -->
<li {% if current_page == "contact" %}aria-current="page"{% endif %}><a href="/contact.html">Contact</a></li>
</ul>
</nav>
</header>