popov.link/_includes/header.html

15 lines
524 B
HTML
Raw Normal View History

2018-04-11 03:33:35 +03:00
<section class="container">
<a href="{{ site.baseurl | uri_escape }}" class="navigation-title">Home</a>
<ul class="navigation-list float-right">
<li class="navigation-item">
{% for item in site.pages %}
{% if item.show == true %}
<a href="{{ item.url | relative_url | uri_escape }}" class="navigation-link">
{{ item.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
</a>
{% endif %}
{% endfor %}
</li>
</ul>
</section>