diff options
Diffstat (limited to 'indieweb-micro/themes/MinIndie/layouts/partials/header.html')
| -rw-r--r-- | indieweb-micro/themes/MinIndie/layouts/partials/header.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/indieweb-micro/themes/MinIndie/layouts/partials/header.html b/indieweb-micro/themes/MinIndie/layouts/partials/header.html new file mode 100644 index 0000000..efbd8e1 --- /dev/null +++ b/indieweb-micro/themes/MinIndie/layouts/partials/header.html @@ -0,0 +1,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> |
