2022-02-15 01:13:11 -05:00
|
|
|
|
2018-09-23 07:11:35 -04:00
|
|
|
<head>
|
2024-10-14 21:33:59 -04:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
2019-03-23 03:18:03 -04:00
|
|
|
<title>
|
2022-02-15 01:13:11 -05:00
|
|
|
{{- if eq .Title .Site.Title -}}
|
|
|
|
{{ .Site.Title }}
|
|
|
|
{{- else -}}
|
2022-05-05 21:23:22 -04:00
|
|
|
{{ .Title }} | {{ .Site.Title }}
|
2022-02-15 01:13:11 -05:00
|
|
|
{{- end -}}
|
2019-03-23 03:18:03 -04:00
|
|
|
</title>
|
2024-10-14 21:33:59 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="supported-color-schemes" content="light dark" />
|
|
|
|
<meta name="author" content="{{ .Site.Params.Author }}" />
|
|
|
|
<meta name="robots" content="index,follow" />
|
|
|
|
<meta name="fediverse:creator" content="@brozek@fosstodon.org" />
|
2023-01-20 13:18:47 -05:00
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/">
|
2022-06-11 20:35:11 -04:00
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="{{ .Site.BaseURL }}{{ .Site.Params.favicon }}">
|
2022-12-14 00:15:17 -05:00
|
|
|
<link rel="pgpkey" href="https://keys.openpgp.org/pks/lookup?op=get&options=mr&search={{ .Site.Params.email }}">
|
2018-09-24 12:11:11 -04:00
|
|
|
|
2020-03-01 09:46:57 -05:00
|
|
|
<!-- Identities -->
|
2022-02-15 01:13:11 -05:00
|
|
|
{{- range .Site.Params.identities -}}
|
2023-01-20 13:18:47 -05:00
|
|
|
<link href="{{.}}" rel="me">
|
2022-02-15 01:13:11 -05:00
|
|
|
{{ end -}}
|
|
|
|
|
2022-05-01 01:06:44 -04:00
|
|
|
<!-- Webmentions -->
|
2022-11-25 23:22:28 -05:00
|
|
|
{{ $siteHost := (urls.Parse .Site.BaseURL).Host -}}
|
2023-01-20 13:18:47 -05:00
|
|
|
<link rel="webmention" href="https://webmention.io/{{ $siteHost }}/webmention">
|
|
|
|
<link rel="pingback" href="https://webmention.io/{{ $siteHost }}/xmlrpc">
|
2022-05-01 01:06:44 -04:00
|
|
|
|
2022-05-02 00:04:37 -04:00
|
|
|
<!-- RSS / Alternative Links -->
|
|
|
|
{{- if .IsHome -}}
|
2023-01-20 13:18:47 -05:00
|
|
|
<link rel="alternate" type="application/json" href="{{ .Site.BaseURL }}blog/index.json" title="Brandon Rozek's Blog">
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="{{ .Site.BaseURL }}blog/index.xml" title="Brandon Rozek's Blog">
|
|
|
|
<link rel="alternate" type="application/json" href="{{ .Site.BaseURL }}presentations/index.json" title="Brandon Rozek's Presentations}">
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="{{ .Site.BaseURL }}presentations/index.xml" title="Brandon Rozek's Presentations">
|
2022-05-02 00:04:37 -04:00
|
|
|
{{ else }}
|
2022-02-15 01:13:11 -05:00
|
|
|
{{ range .AlternativeOutputFormats -}}
|
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
2022-05-02 00:04:37 -04:00
|
|
|
{{ end }}
|
2022-02-15 01:13:11 -05:00
|
|
|
{{ end -}}
|
|
|
|
|
|
|
|
<!-- CSS -->
|
|
|
|
{{- $style := resources.Get "css/style.css" -}}
|
|
|
|
{{- $markdown := resources.Get "css/markdown.css" -}}
|
|
|
|
{{- $fontawesome := resources.Get "css/fontawesome.css" -}}
|
|
|
|
{{- $syntaxHighlight := resources.Get "css/syntax-highlight.css" -}}
|
2020-12-22 10:20:17 -05:00
|
|
|
{{ $css := slice $style $markdown $fontawesome $syntaxHighlight | resources.Concat "css/style.css" | resources.Minify | resources.Fingerprint }}
|
2020-03-22 16:09:31 -04:00
|
|
|
<link rel="stylesheet" href="{{ $css.Permalink }}" integrity="{{ $css.Data.Integrity }}">
|
2022-11-22 22:24:06 -05:00
|
|
|
|
2022-02-15 01:13:11 -05:00
|
|
|
{{- $styleDark := resources.Get "css/style-dark.css" -}}
|
|
|
|
{{- $markdownDark := resources.Get "css/markdown-dark.css" -}}
|
2020-12-22 10:20:17 -05:00
|
|
|
{{ $cssDark := slice $styleDark $markdownDark | resources.Concat "css/style-dark.css" | resources.Minify | resources.Fingerprint }}
|
2020-03-22 16:09:31 -04:00
|
|
|
<link rel="stylesheet" href="{{ $cssDark.Permalink }}" media="(prefers-color-scheme: dark)" integrity="{{ $cssDark.Data.Integrity }}">
|
2018-09-24 12:11:11 -04:00
|
|
|
|
2019-03-23 03:18:03 -04:00
|
|
|
<!-- custom css -->
|
2022-02-15 01:13:11 -05:00
|
|
|
{{- range .Site.Params.custom_css -}}
|
|
|
|
<link rel="stylesheet" href="{{ . }}">
|
|
|
|
{{ end -}}
|
2018-09-24 12:11:11 -04:00
|
|
|
|
2019-03-23 03:18:03 -04:00
|
|
|
{{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/gohugoio/hugo/tree/master/tpl/tplimpl/embedded/templates */}}
|
|
|
|
{{- template "_internal/opengraph.html" . -}}
|
|
|
|
{{- template "_internal/schema.html" . -}}
|
2020-02-26 06:00:39 -05:00
|
|
|
<!-- {{- template "_internal/twitter_cards.html" . -}} -->
|
2023-01-05 00:35:01 -05:00
|
|
|
{{- partial "external/twitter_cards.html" . -}}
|
2018-09-24 12:11:11 -04:00
|
|
|
|
2022-08-21 00:06:51 -04:00
|
|
|
{{ partial "citation.html" . }}
|
2024-10-19 21:11:31 -04:00
|
|
|
|
|
|
|
{{- $script := resources.Get "js/script.js" -}}
|
|
|
|
<script src="{{ $script.Permalink }}" async></script>
|
2018-09-23 07:11:35 -04:00
|
|
|
</head>
|