blog.hatebit.org/theme/templates/partials/_header.html
2025-01-22 17:25:01 +01:00

15 lines
434 B
HTML

<header role="banner">
<div class="container flex-col md:flex-row">
<div>
<a href="{{ SITEURL }}/" title="{{ SITENAME|lower }}" class="title">{{ SITENAME|lower }}</a>
</div>
<div class="mt-6 md:mt-0">
<nav role="navigation">
{% for (title, url) in MENUITEMS %}
<a href="{{ SITEURL }}/{{ url }}" title="{{ title }}">/{{ title }}</a>
{% endfor %}
</nav>
</div>
</div>
</header>