5 lines
201 B
HTML
5 lines
201 B
HTML
<nav>
|
|
{% for item in site.data.navigation %}
|
|
<a href="{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %}>{{ item.icon }} {{ item.name }}</a>
|
|
{% endfor %}
|
|
</nav> |