aboutsummaryrefslogtreecommitdiff
path: root/_includes/header.html
blob: a7b79338f8f007f3035a7584c443d6a0abcff06b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<section class="header">
    <div class="container">
        <div class="content">
            <!-- Username -->
            <a href="{{ site.baseurl | uri_escape }}">
                <div class="name">{{ site.author.name | smartify | strip_html | normalize_whitespace }}</div>
            </a>
            <!-- Navigating -->
            <nav>
                <ul>
                    {% for node in site.pages reversed %}
                        {% if node.show == true %}
                            <li class="nav-item">
                                <a href="{{ node.url | relative_url | uri_escape }}">
                                    <span>{{ node.title | smartify | strip_html | normalize_whitespace }}</span>
                                </a>
                            </li>
                        {% endif %}
                    {% endfor %}
                </ul>
            </nav>
        </div>
    </div>
</section>