nomilo/templates/macros.html

12 lines
348 B
HTML
Raw Normal View History

2022-04-29 16:04:12 +00:00
{% macro nav_link(content, href, current_page, section=False, current_sections=False, props='') %}
<a
href="{{ href }}"
{{ props }}
{% if current_page == href %}
aria-current="page"
{% elif section and section in current_sections %}
aria-current="location"
{% endif %}
>{{ content }}</a>
{% endmacro nav_link %}