portal/_includes/nav.html

7 lines
228 B
HTML
Raw Normal View History

2019-11-25 12:01:33 +01:00
<nav>
{% for item in site.data.nav.list %}
2021-04-13 20:03:12 +02:00
<!-- {{page.url}}, {{item.url}} -->
<a href="{{site.baseurl}}{{item.url}}"{% if page.url contains item.url %} class="a-active" {% endif %}>{{item.title}}</a>
2019-11-25 12:01:33 +01:00
{% endfor %}
</nav>