blob: efbd8e1f071b7fb894bdf6b7b620b0dcde8b535e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<header>
<div style="display:flex;flex-flow:row wrap;justify-content:space-between">
<div style="align-self:flex-start;">
{{ strings.Repeat ( .Site.Params.Author.Name | len | add 6 ) "=" }}<br>
== <a href="{{ .Site.BaseURL }}">{{ .Site.Params.Author.Name }}</a> ==<br>
{{ strings.Repeat ( .Site.Params.Author.Name | len | add 6 ) "=" }}
</div>
<div style="align-self:center;">{{ .Site.Params.subtitle }}</div>
</div>
<nav style="margin: 1rem auto;">
{{ with .Site.Menus.main }}
{{ range . }}
<a href="{{ .URL | relURL }}"><b>{{ .Name }}</b></a>.
{{ end }}
{{ end }}
</nav>
</header>
|