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