blob: 655a8b4f4588c22570f0a05e4b5046d580caa71e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<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 reversed %}
{% 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>
|