erynwells.me/layouts/partials/head.html

38 lines
1.4 KiB
HTML
Raw Normal View History

<head>
<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">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#000000">
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff">
<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 }}">
{{ else }}
<meta name="description" content="{{ .Params.description }}">
<meta name="author" content="{{ site.Author.name }}">
2022-10-15 09:35:07 -07:00
{{- end -}}
{{- range $.Scratch.Get "social-list" -}}
<link rel="preload" as="image" href="{{ printf `%s.svg` . | absURL }}">
2022-10-15 09:35:07 -07:00
{{- end -}}
2022-11-24 08:29:59 -05:00
<link rel="icon" type="image/png" href="{{ `icons/favicon.png` | relURL }}">
<link rel="apple-touch-icon" type="image/png" href="{{ `icons/touchicon.png` | relURL }}">
2022-12-19 22:57:53 -08:00
<link rel="me" href="https://mastodon.social/@erynofwales">
{{ hugo.Generator }}
2022-10-15 09:35:07 -07:00
{{- range .AlternativeOutputFormats -}}
2022-11-24 08:29:59 -05:00
<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .RelPermalink }}" title="{{ site.Title }}">
2022-10-15 09:35:07 -07:00
{{- end -}}
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 -}}
</head>