2020-09-26 23:00:48 +02:00
|
|
|
<meta charset='utf-8'>
|
|
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
2020-09-11 22:50:30 +02:00
|
|
|
|
2020-09-26 23:00:48 +02:00
|
|
|
{{- $description := partialCached "data/description" . .RelPermalink -}}
|
2024-03-12 14:45:59 +01:00
|
|
|
<meta name='description' {{ printf "content=%q" $description | safeHTMLAttr }}>
|
2022-10-22 06:13:24 -04:00
|
|
|
{{ with .Params.Keywords }}<meta name="keywords" content="{{ delimit . ", " }}">{{ end }}
|
2020-08-22 13:20:08 +02:00
|
|
|
|
2024-02-19 10:54:02 +01:00
|
|
|
{{- $title := partial "data/title" . -}}
|
2020-09-26 23:00:48 +02:00
|
|
|
<title>{{ $title }}</title>
|
|
|
|
|
|
|
|
|
|
<link rel='canonical' href='{{ .Permalink }}'>
|
|
|
|
|
|
2026-02-17 18:03:53 +01:00
|
|
|
{{- partial "head/custom-font.html" . -}}
|
2020-09-26 23:00:48 +02:00
|
|
|
{{- partial "head/style.html" . -}}
|
|
|
|
|
{{- partial "head/script.html" . -}}
|
|
|
|
|
{{- partial "head/opengraph/include.html" . -}}
|
|
|
|
|
|
|
|
|
|
{{- range .AlternativeOutputFormats -}}
|
|
|
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
|
|
|
|
|
{{- end -}}
|
|
|
|
|
|
2026-02-01 13:11:42 +01:00
|
|
|
{{- $favicon := partial "helper/image" (dict "Image" .Site.Params.favicon "Resources" resources) -}}
|
|
|
|
|
{{ with $favicon }}
|
|
|
|
|
<link rel="shortcut icon" href="{{ .Permalink }}" />
|
2020-12-20 11:38:49 +01:00
|
|
|
{{ end }}
|
|
|
|
|
|
2025-11-01 21:49:15 +01:00
|
|
|
{{- partial "google_analytics.html" . -}}
|
2021-02-11 12:56:39 -05:00
|
|
|
{{- partial "head/custom.html" . -}}
|