aboutsummaryrefslogtreecommitdiff
path: root/templates/partials/nav.html
blob: b9c4cd74e1ebac359b7ca48799e710abb9a59a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% 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>

      <span style="color: white">{{ item.divider }}</span>
</nav>

{% endfor %}
{% endif %}

</div>