summaryrefslogtreecommitdiff
path: root/_includes/nav.njk
blob: 0bbd49b77a6cc075c5900e076fec850e708a2dbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<nav>
    <ul>
        {%- for p in collections.all -%}
            {% if p.data.nav == true %}
                <li>
                    <a href="{{ p.url }}" {%if p.url == page.url %}class="active"{%endif%}>{{ p.data.title }}</a>
                </li>
            {% endif %}
        {%- endfor -%}
    </ul>
</nav>