aboutsummaryrefslogtreecommitdiff
path: root/_includes/navbar.html
blob: 752be0a2a233ea0cb97bb081d47a8b56d3a185a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% assign pages = site.pages | where: "show", true %}

<nav role="navigation">
  <div class="container">
    <ul class="nav nav-pills pull-right">
      <li role="presentation"><a href="/">Home</a></li>
      {% for page in pages %}
        <li role="presentation">
          <a href="{{ page.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}">
            {{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
          </a>
        </li>
      {% endfor %}
    </ul>
  </div>
</nav>