aboutsummaryrefslogtreecommitdiff
path: root/_includes/navbar.html
blob: 1c48ac85b2bd589f1d3ff3d17a32fa773b857826 (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 class="bg-light navbar navbar-expand navbar-light sticky-top" role="navigation">
  <div class="container">
    <a class="mr-auto navbar-brand" href="#">{{ site.title }}</a>
    <ul class="navbar-nav">
      {% for page in pages %}
        <li class="nav-item">
          <a class="nav-link" 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 }}
          </a>
        </li>
      {% endfor %}
    </ul>
  </div>
</nav>