Enable macros for nav item listing
This commit is contained in:
9
templates/macros.html
Normal file
9
templates/macros.html
Normal 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 %}
|
Reference in New Issue
Block a user