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