summaryrefslogtreecommitdiff
path: root/layouts/partials/header.html
blob: 92da9a748a0600e392db634031bbaa3c16571d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{/* Header */}}

<div class="header">
    <h1>{{ site.Title }}</h1>

    <div class="flex">
        {{ $currentPage := . }}

        {{ with site.Params.menu }}
        {{ range . }}
        <p class="small {{ if eq .url $currentPage.Path }} bold {{end}}">
            <a href="{{.url}}">
                /{{.name }}
            </a>
        </p>
        {{ end }}
        {{ end }}

    </div>
</div>