website/templates/macros.html
2026-03-17 11:06:46 +01:00

6 lines
289 B
HTML

{% macro menu_item(url, name) %}
<li>
<a href="{{ url }}" {% if current_path==url %} class="active" aria-current="page" {% elif current_path is
starting_with(url) and url !="/" %} class="ancestor" aria-current="true" {% endif %}>{{ name }}</a>
</li>
{% endmacro %}