blob: 41714499d1a6651531036225dcd8da4e08a50466 (
plain) (
blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{% assign pages = site.pages | where: "show", true %}
<div class="navigation-container">
<h1 class="navigation-header">
{{ page.title | default: site.title | strip_newlines | strip_html| strip | normalize_whitespace | smartify | xml_escape }}
</h1>
<input id="toggle-button" class="toggle-button" type="checkbox" />
<label class="toggle-label" for="toggle-button">
<span></span>
<span></span>
<span></span>
</label>
<nav class="navigation" role="navigation">
<ul class="navigation-footer">
{% for item in site.data.social_links %}
<li>
<a target="_blank" href="{{ item.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
{{ item.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
</a>
</li>
{% endfor %}
</ul>
<ul class="navigation-pills">
<li class="navigation-item" role="presentation">
<h5>
<a href="/">Home</a>
</h5>
</li>
{% for page in pages%}
<li class="navigation-item" role="presentation">
<h5>
<a href="{{ page.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
{{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
</a>
</h5>
</li>
{% endfor %}
</ul>
</nav>
</div>
|