t-r.de/theme/templates/includes/navbar.html
2025-02-04 20:54:22 +01:00

13 lines
252 B
HTML

<div class="container">
<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>