website/layouts/partials/header.html

16 lines
583 B
HTML
Raw Normal View History

2022-09-28 20:49:59 +00:00
<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>