2021-10-02 11:19:42 -07:00
|
|
|
<head>
|
2022-09-26 13:21:58 -07:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2022-10-19 07:36:57 -07:00
|
|
|
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#000">
|
|
|
|
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#fff">
|
2021-10-02 11:19:42 -07:00
|
|
|
|
|
|
|
<title>{{ if not .IsHome }}{{ .Title }} - {{ end }}{{ site.Title }}</title>
|
|
|
|
|
2022-10-15 09:35:07 -07:00
|
|
|
{{- if eq .Kind "page" -}}
|
|
|
|
<meta name="description" content="{{ .Summary }}" />
|
|
|
|
<meta name="author" content="{{ .Params.Author | default site.Author.name }}">
|
2022-08-27 09:17:42 -07:00
|
|
|
{{ else }}
|
2022-10-15 09:35:07 -07:00
|
|
|
<meta name="description" content="{{ .Params.description }}">
|
|
|
|
<meta name="author" content="{{ site.Author.name }}">
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
{{- range $.Scratch.Get "social-list" -}}
|
|
|
|
<link rel="preload" as="image" href="{{ printf `%s.svg` . | absURL }}">
|
|
|
|
{{- end -}}
|
2021-10-02 11:19:42 -07:00
|
|
|
|
2021-12-26 12:39:49 -07:00
|
|
|
<link rel="icon" href="{{ `favicon.ico` | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" href="{{ `apple-touch-icon.png` | absURL }}">
|
2021-10-02 11:19:42 -07:00
|
|
|
|
|
|
|
{{ hugo.Generator }}
|
|
|
|
|
2022-10-15 09:35:07 -07:00
|
|
|
{{- range .AlternativeOutputFormats -}}
|
|
|
|
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink }}" title="{{ site.Title }}">
|
|
|
|
{{- end -}}
|
2021-10-02 11:19:42 -07:00
|
|
|
|
2022-10-15 09:35:07 -07:00
|
|
|
{{- if or hugo.IsProduction (eq site.Params.env "production") -}}
|
|
|
|
{{ template "_internal/schema.html" . }}
|
|
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
|
|
{{- end -}}
|
2021-10-02 11:19:42 -07:00
|
|
|
</head>
|