18 lines
397 B
HTML
18 lines
397 B
HTML
{{ $currentPage := . }}
|
|
<header>
|
|
<h1>
|
|
<a href="{{ $.Site.BaseURL | relURL }}">{{ .Site.Title }}</a>
|
|
</h1>
|
|
{{ with $.Site.Params.Description }}
|
|
{{ . }}
|
|
{{ end }}
|
|
<nav>
|
|
{{ range $.Site.Sections }}
|
|
<a href="{{ .Permalink }}" class="{{ if eq $currentPage.Section .Section }}exposed{{ end }}">
|
|
{{ .Title | markdownify }}
|
|
</a>
|
|
{{ end }}
|
|
</nav>
|
|
</header>
|
|
|