popov.link/_includes/navbar.html
Valentin Popov 06a7537535
Aesthetic navigation bar
Signed-off-by: Valentin Popov <info@valentineus.link>
2018-05-16 23:36:46 +04:00

23 lines
743 B
HTML

{% assign pages = site.pages | where: "show", true %}
<nav role="navigation">
<div class="container">
<ul class="nav nav-pills">
{% unless page.url == "/index.html" %}
<li role="presentation"><a href="/">&lt;&lt; Home</a></li>
{% endunless %}
<!-- Right side -->
<ul class="nav nav-pills pull-right">
{% for page in pages %}
<li 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>
</ul>
</div>
</nav>