popov.link/_includes/navbar.html
Valentin Popov 040b041597
Link for home page
Signed-off-by: Valentin Popov <info@valentineus.link>
2019-03-25 03:10:50 +04:00

42 lines
1.6 KiB
HTML

{% 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">
<a href="/">Home</a>
</li>
{% for page in pages%}
<li class="navigation-item" role="presentation">
<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>
</li>
{% endfor %}
</ul>
</nav>
</div>