aboutsummaryrefslogtreecommitdiff
path: root/_includes/header.html
blob: 57a798f29c91e6e630396ff3b3456f3908ddf0a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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 %}
        {% assign title = item.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify %}
        {% assign link = item.url | relative_url | uri_escape %}
        <!-- Show the link -->
        {% if item.show == true %}
          <a href="{{ link }}" class="navigation-link">{{ title }}</a>
        {% endif %}
      {% endfor %}
    </li>
  </ul>
</section>