2022-08-24 10:26:29 -04:00
|
|
|
<head>
|
2022-10-27 10:05:34 -04:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2022-08-24 10:26:29 -04:00
|
|
|
|
2022-10-27 10:05:34 -04:00
|
|
|
{{ if .IsHome }}
|
|
|
|
<meta name="description" content="{{ $.Site.Params.description }}">
|
|
|
|
<title>{{.Site.Title}}</title>
|
|
|
|
{{ else }}
|
|
|
|
<title>{{.Site.Title}} / {{ .Title }}</title>
|
2023-04-13 18:38:37 -04:00
|
|
|
|
|
|
|
{{ if .Summary }}
|
2022-10-27 10:05:34 -04:00
|
|
|
<meta name="description" content="{{ .Summary }}">
|
2023-04-13 18:38:37 -04:00
|
|
|
{{ else }}
|
|
|
|
<meta name="description" content="{{ .Title }}">
|
|
|
|
{{ end }}
|
2022-10-27 10:05:34 -04:00
|
|
|
{{ end }}
|
|
|
|
|
2024-09-28 10:37:39 -04:00
|
|
|
<link href="/blog/index.xml" rel="alternate" type="application/rss+xml" title="{{ $.Site.Params.author }}'s blog">
|
2022-09-26 11:06:53 -04:00
|
|
|
|
2022-08-24 10:26:29 -04:00
|
|
|
{{ $style := resources.Get "css/site.css" }}
|
2022-12-27 21:47:12 -05:00
|
|
|
{{ if hugo.IsProduction }}
|
2022-10-27 10:05:34 -04:00
|
|
|
{{ $style = $style | minify | fingerprint | resources.PostProcess }}
|
|
|
|
{{ end }}
|
2022-12-27 21:47:12 -05:00
|
|
|
<link href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}" rel="stylesheet">
|
2022-10-27 10:56:25 -04:00
|
|
|
|
2023-09-24 22:36:17 -04:00
|
|
|
<link rel="shortcut icon" href="/favicon.ico?v=3" type="image/x-icon">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=2">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=2">
|
2022-12-20 14:07:05 -05:00
|
|
|
|
|
|
|
<meta name="robots" content="noai">
|
2024-10-12 14:54:51 -04:00
|
|
|
<meta name="fediverse:creator" content="{{ $.Site.Params.fediverse_url }}" />
|
2023-04-11 18:44:18 -04:00
|
|
|
|
2023-04-17 14:12:16 -04:00
|
|
|
{{ partial "opengraph.html" . }}
|
2022-09-26 11:06:53 -04:00
|
|
|
</head>
|