summaryrefslogtreecommitdiff
path: root/_includes/nav.njk
blob: a0b4ab832b392ff421c3d05e2e3a9fc7afcf2cdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<nav id="menu">
    <button id="menu-close" class="mobile-menu">[CLOSE]</button>
    <ul>
        {%- for p in collections.navItems -%}
            {% if p.data.nav %}
                <li>
                    <a href="{{ p.url }}" {%if p.url == page.url %}class="active"{%endif%}>{{ p.data.title }}</a>
                </li>
            {% endif %}
        {%- endfor -%}
    </ul>
</nav>