2025-06-07 02:33:02 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
2025-06-20 02:33:45 +02:00
|
|
|
{{ hugo.Generator }}
|
|
|
|
|
|
|
|
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
|
|
|
|
<meta name="description" content="{{ default .Summary .Description }}">
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}"/>
|
|
|
|
{{- if .IsTranslated }}
|
|
|
|
{{- range .Translations }}
|
|
|
|
<link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .RelPermalink }}"/>
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
2025-06-07 02:33:02 +02:00
|
|
|
|
|
|
|
{{ with .Site.GetPage "/blog" }}
|
|
|
|
{{- with .OutputFormats.Get "rss" }}
|
|
|
|
{{- printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{ if eq .Kind "term" }}
|
|
|
|
{{- with .OutputFormats.Get "rss" }}
|
|
|
|
{{- printf `<link rel=%q type=%q href=%q title='%s | %s'>` .Rel .MediaType.Type .Permalink $.Title site.Title | safeHTML }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
<meta name="apple-mobile-web-app-title" content="bcarlin.net" />
|
|
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
|
|
|
2025-06-15 02:09:31 +02:00
|
|
|
{{ template "_internal/opengraph.html" . }}
|
2025-06-20 02:33:45 +02:00
|
|
|
{{- template "_internal/schema.html" . }}
|
2025-06-15 02:09:31 +02:00
|
|
|
|
2025-06-07 02:33:02 +02:00
|
|
|
{{ partialCached "head/css.html" . }}
|
2025-06-20 02:33:45 +02:00
|
|
|
{{- partialCached "head/js.html" . }}
|