chapellevictoria.fr/layouts/partials/head.html
2025-09-07 10:56:43 +02:00

32 lines
753 B
HTML

<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name="description"
content="{{ with .Description }}
{{ . }}
{{ else }}
{{ with .Summary }}
{{ . }}
{{ else }}
{{ .Site.Params.description }}
{{ end }}
{{ end }}"
/>
<meta name="author" content="{{ .Site.Params.author }}" />
{{ with .Keywords }}
<meta name="keywords" content="{{ delimit . ", " }}" />
{{ end }}
<link rel="icon" type="image/png" href="/favicon.png" />
<title>
{{ if .IsHome }}
{{ site.Title }}
{{ else }}
{{ printf "%s | %s" .Title site.Title }}
{{ end }}
</title>
{{ partialCached "head/css.html" . }}