Files
neocities/_includes/nav.html
bvanroll 1b643b3cc1
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 18s
fixed the thing
2025-09-13 21:11:12 +02:00

10 lines
204 B
HTML

<nav>
{% for item in site.data.navigation %}
<a class="navlink" href={{ item.link }} {% if page.url == item.link %} style="color: red;" {% endif %}>
{{ item.name }}
</a>
{% endfor %}
</nav>