t-r.de/theme/templates/includes/navbar.html
2025-02-06 21:42:29 +01:00

17 lines
310 B
HTML

{#<div class="container">#}
<ul>
<h2>{{ SITESUBTITLE }}</h2>
</ul>
<ul>
{% for title, link in MENUITEMS %}
{% if link == url %}
<li aria-current="page">
{% else %}
<li>
{% endif %}
<a href="{{ link }}">{{ title }}</a>
</li>
{% endfor %}
</ul>
{#
</div>#}