10 lines
274 B
HTML
10 lines
274 B
HTML
|
{% 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 %}
|