You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
286 B

<nav>
{% for item in site.data.nav %}
<a href="{{ item.link }}" class="nav-link" {% if item.link == page.url %} aria-current="page" class="on-page"{% endif %} {% if item.new_tab == true %} target="_blank" rel="noopener noreferrer" {% endif %}>{{ item.name }}</a>
{% endfor %}
</nav>