dustin.web/templates/cv-nav.html

9 lines
353 B
HTML

<nav class="cv-nav">
<ul class="cv-nav">
<li {% if page is not defined %}class="active"{% endif %}><a href="{{ section.permalink | safe }}">Overview</a></li>
{% for p in section.pages %}
<li {% if page is defined and p.slug == page.slug %}class="active"{% endif %}><a href="{{ p.permalink | safe }}">{{ p.title }}</a></li>
{% endfor %}
</ul>
</nav>