blog.hatebit.org/theme/templates/partials/_header.html

15 lines
434 B
HTML
Raw Normal View History

<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>