2018-04-18 00:00:42 +03:00
|
|
|
{% assign pages = site.pages | where: "show", true %}
|
2018-04-23 00:22:53 +03:00
|
|
|
|
2018-04-18 00:00:42 +03:00
|
|
|
<nav class="navigation">
|
|
|
|
<a href="{{ site.url | uri_escape }}">Home</a>
|
2018-04-23 00:22:53 +03:00
|
|
|
|
2018-04-18 00:00:42 +03:00
|
|
|
{% for page in pages %}
|
2018-04-25 01:15:04 +03:00
|
|
|
<a href="{{ page.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
|
|
|
|
{{ page.title | default: "Page" | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
|
2018-04-18 00:00:42 +03:00
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</nav>
|