blob: 5227c2f4bcb51e888ffe076be81c50a0c752d368 (
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 target="_blank" href="{{ s.href }}">{{ s.name }}</a>
</li>
{%- endfor -%}
</ul>
</nav>
|