mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
5 lines
220 B
HTML
5 lines
220 B
HTML
<nav aria-label="Site Map" class="site-map">
|
|
{% for item in site.data.navigation %}
|
|
<a href="{{ item.link }}" {% if page.url == item.link %}class="current"{% endif %}>{{ item.name }}</a>
|
|
{% endfor %}
|
|
</nav> |