website-theme/layouts/partials/head.html

79 lines
3.5 KiB
HTML
Raw Normal View History

2022-02-15 01:13:11 -05:00
2018-09-23 07:11:35 -04:00
<head>
2022-02-15 01:13:11 -05: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>
<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">
<link rel="manifest" href="/manifest.json">
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/">
<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
<!-- Identities -->
2022-02-15 01:13:11 -05:00
{{- range .Site.Params.identities -}}
<link href="{{.}}" rel="me">
2022-02-15 01:13:11 -05:00
{{ end -}}
<!-- Webmentions -->
{{ $siteHost := (urls.Parse .Site.BaseURL).Host -}}
<link rel="webmention" href="https://webmention.io/{{ $siteHost }}/webmention">
<link rel="pingback" href="https://webmention.io/{{ $siteHost }}/xmlrpc">
2022-05-02 00:04:37 -04:00
<!-- RSS / Alternative Links -->
{{- if .IsHome -}}
<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-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
<script src="https://polyfill.io/v3/polyfill.js"></script>
2018-09-24 12:11:11 -04:00
2020-12-22 10:20:17 -05:00
<!-- MathJax -->
2022-02-15 01:13:11 -05:00
{{- if or .Params.math .Site.Params.math -}}
{{ partial "mathjax_support.html" . }}
{{- end -}}
{{ partial "citation.html" . }}
{{- $script := resources.Get "js/script.js" -}}
<script src="{{ $script.Permalink }}" async></script>
2018-09-23 07:11:35 -04:00
</head>