forked from WeLoveSpeed/welovespeed.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
navigation.html
26 lines (25 loc) · 1.04 KB
/
navigation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<a role="button" href="#" class="button-reset nav-trigger" id="navTrigger" title="Navigation"
aria-controls="navigation" aria-expanded="false"
data-toggle-class="is-active" data-toggle-target-parent="#navigation" data-toggle-escape-key>
<span class="nav-trigger-button">
<span class="load"></span>
<span class="load"></span>
<span class="load"></span>
<span class="kpi"></span>
<span class="kpi"></span>
<p class="sr-only">Navigation menu</p>
</span>
</a>
<nav class="page-nav" id="navigation" aria-labelledby="navTrigger">
<ul class="page-nav-inner">
{% assign nav_links = site.data.sitemap | where: 'in_nav', true %}
{% for link in nav_links %}
<li>{% include link.html link=link %}</li>
{% endfor%}
{% if page.translation %}
{% assign hreflang = page.translation.locale | slice: 0,2 %}
<li><a hreflang="{{ hreflang }}" href="{{ page.translation.url | relative_url }}"><small>{% t (see in english) %}</small></a></li>
{% endif %}
</ul>
{% include social-links.html %}
</nav>