summaryrefslogtreecommitdiff
path: root/_includes/nav.njk
blob: 0285bbe021430fe24c47c46d21d1edf19c239ebf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<nav id="menu">
    <button aria-label="Navmenu close" 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 -%}
        {%- for s in site.headerLinks -%}
            <li>
                <a no-transition href="{{ s.href }}">{{ s.name }}</a>
            </li>
        {%- endfor -%}
    </ul>
</nav>