website/layouts/partials/header.html
2022-09-28 22:49:59 +02:00

16 lines
583 B
HTML

<header>
{{ strings.Repeat ( .Site.Title | len | add 5 ) "=" }}<br>
== <a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a> ==<br>
{{ strings.Repeat ( .Site.Title | len | add 5 ) "=" }}
<div style="float: right;">{{ .Site.Params.subtitle }}</div><br>
<nav>
<a href="/actualites"><b>Actualité</b></a>.
<a href="/association"><b>L'association</b></a>.
<a href="/histoires"><b>Histoire de la chapelle</b></a>.
<a href="/images"><b>Gallerie</b></a>.
{{ range .Site.Menus.main }}
<a href="{{ .URL | relURL }}"><b>{{ .Name }}</b></a>.
{{ end }}
</nav>
</header>