aboutsummaryrefslogtreecommitdiff
path: root/_includes/navbar.html
blob: d334f96f0863c61c946bd8b2e3e12ea08f05f0dc (plain) (blame)
1
2
3
4
5
6
7
8
9
{% assign pages = site.pages | where: "show", true %}
<nav class="navigation">
  <a href="{{ site.url | uri_escape }}">Home</a>
  {% for page in pages %}
    <a href="{{ page.url | relative_url | uri_escape }}">
      {{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
    </a>
  {% endfor %}
</nav>