aboutsummaryrefslogtreecommitdiff
path: root/templates/partials/nav.html
blob: f8c0eff716ca81212b1ceb34e58383d3538b9ae6 (plain)
1
2
3
4
5
6
7
{% if config.extra.navbar_items %}
{% for item in config.extra.navbar_items %}
<nav>
	<a href="{{ get_url(path=item.url) }}">{{ item.name }}</a>
</nav>
{% endfor %}
{% endif %}