home/_includes/navigation.html

6 lines
176 B
HTML
Raw Permalink Normal View History

2023-11-29 12:36:02 +00:00
<nav>
{% for item in site.data.navigation %}
<a href="{{ item.link }}" {% if page.url == item.link %}class="current"{% endif %}>{{ item.name }}</a>
{% endfor %}
</nav>