Enable macros for nav item listing

This commit is contained in:
2024-01-09 23:20:06 +01:00
parent 7cfcf011ce
commit 5e5706b55d
3 changed files with 17 additions and 3 deletions

9
templates/macros.html Normal file
View File

@ -0,0 +1,9 @@
{% macro nav_items() %}
{% for item in config.extra.nav %}
{% if item.external %}
<li><a class="external" href="{{ item.path }}">{{ item.title }}</a></li>
{% else %}
<li><a href="{{ item.path }}">{{ item.title }}</a></li>
{% endif %}
{% endfor %}
{% endmacro %}