18 lines
586 B
HTML
18 lines
586 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">
|
|
<a href="{{ SITEURL }}/" title="posts">/posts</a>
|
|
{% if DISPLAY_PAGES_ON_MENU %}
|
|
{% for p in pages|sort(attribute="sortorder") %}
|
|
<a href="{{ SITEURL }}/{{ p.url }}" title="{{ p.title|lower }}">/{{ p.title|lower }}</a>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|