All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 18s
10 lines
204 B
HTML
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>
|