popov.link/_includes/header.html
Valentin Popov ee1f867d18 Page title
2018-04-11 00:33:35 +00:00

15 lines
524 B
HTML

<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>