2021-08-11 05:28:33 +00:00
< head >
< meta charset = "utf-8" / >
2022-01-11 01:00:27 +00:00
{{ with .Site.Language.Params.htmlCode | default .Site.LanguageCode }}
2021-08-11 05:28:33 +00:00
< meta http-equiv = "content-language" content = "{{ . }}" / >
{{ end }}
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
2022-11-21 22:55:20 +00:00
< meta name = "theme-color" content = "rgb(255,255,255)" / >
2021-08-11 05:28:33 +00:00
< meta http-equiv = "X-UA-Compatible" content = "ie=edge" / >
{{/* Title */}}
{{ if .IsHome -}}
2022-01-19 00:24:15 +00:00
< title > {{ .Site.Title | emojify }}< / title >
< meta name = "title" content = "{{ .Site.Title | emojify }}" / >
2021-08-11 05:28:33 +00:00
{{- else -}}
2022-01-19 00:24:15 +00:00
< title > {{ .Title | emojify }} · {{ .Site.Title | emojify }}< / title >
< meta name = "title" content = "{{ .Title | emojify }} · {{ .Site.Title | emojify }}" / >
2021-08-11 05:28:33 +00:00
{{- end }}
{{/* Metadata */}}
2022-11-21 03:42:37 +00:00
< meta name = "description" content = "{{ with .Description }}{{ . }}{{ else }}{{ if .IsPage }}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" / >
2023-01-10 05:33:33 +00:00
{{ with union .Site.Params.keywords .Params.keywords -}}
< meta name = "keywords" content = "{{ delimit . `, `}}" / >
2021-08-11 05:28:33 +00:00
{{- end }}
2021-08-26 00:07:37 +00:00
{{ with .Site.Params.robots }}
< meta name = "robots" content = "{{ . }}" / >
{{ end }}
{{ with .Params.robots }}
< meta name = "robots" content = "{{ . }}" / >
{{ end }}
2021-08-11 05:28:33 +00:00
< link rel = "canonical" href = "{{ .Permalink }}" / >
2021-08-14 03:54:17 +00:00
{{ range .AlternativeOutputFormats -}}
2022-01-19 00:58:52 +00:00
{{ printf `< link rel = "%s" type = "%s" href = "%s" title = "%s" / > ` .Rel .MediaType.Type .RelPermalink ($.Site.Title | emojify) | safeHTML }}
2021-08-14 03:54:17 +00:00
{{ end -}}
2022-01-19 00:28:20 +00:00
{{/* Asset bundles */}}
{{ $assets := newScratch }}
2022-11-07 22:08:28 +00:00
{{ $cssScheme := resources.Get (printf "css/schemes/%s.css" (lower .Site.Params.colorScheme | default "congo")) }}
2022-01-19 00:28:20 +00:00
{{ if not $cssScheme }}
{{ $cssScheme = resources.Get "css/schemes/congo.css" }}
2021-08-21 02:20:29 +00:00
{{ end }}
2022-01-19 00:28:20 +00:00
{{ $assets.Add "css" (slice $cssScheme) }}
{{ $cssMain := resources.Get "css/compiled/main.css" }}
{{ $assets.Add "css" (slice $cssMain) }}
{{ $cssCustom := resources.Get "css/custom.css" }}
{{ if $cssCustom }}
{{ $assets.Add "css" (slice $cssCustom) }}
{{ end }}
{{ $bundleCSS := $assets.Get "css" | resources.Concat "css/main.bundle.css" | resources.Minify | resources.Fingerprint "sha512" }}
2021-08-21 02:20:29 +00:00
< link
type="text/css"
rel="stylesheet"
2022-01-19 00:28:20 +00:00
href="{{ $bundleCSS.RelPermalink }}"
integrity="{{ $bundleCSS.Data.Integrity }}"
2021-08-21 02:20:29 +00:00
/>
2022-02-06 03:46:03 +00:00
{{ $jsAppearance := resources.Get "js/appearance.js" }}
2022-02-06 04:10:59 +00:00
{{ $jsAppearance = $jsAppearance | resources.Minify | resources.Fingerprint "sha512" }}
< script type = "text/javascript" src = "{{ $jsAppearance.RelPermalink }}" integrity = "{{ $jsAppearance.Data.Integrity }}" > < / script >
2022-01-19 01:13:42 +00:00
{{ if .Site.Params.enableSearch | default false }}
{{ $jsFuse := resources.Get "lib/fuse/fuse.min.js" }}
{{ $jsSearch := resources.Get "js/search.js" }}
{{ $assets.Add "js" (slice $jsFuse $jsSearch) }}
{{ end }}
2022-01-25 23:49:30 +00:00
{{ if .Site.Params.enableCodeCopy | default false }}
{{ $jsCode := resources.Get "js/code.js" }}
{{ $assets.Add "js" (slice $jsCode) }}
{{ end }}
2022-05-01 01:17:30 +00:00
{{ if .Site.Params.rtl | default false }}
{{ $jsRTL := resources.Get "js/rtl.js" }}
{{ $assets.Add "js" (slice $jsRTL) }}
{{ end }}
2022-01-19 00:52:49 +00:00
{{ if $assets.Get "js" }}
2022-01-25 23:49:30 +00:00
{{ $bundleJS := $assets.Get "js" | resources.Concat "js/main.bundle.js" | resources.Minify | resources.Fingerprint "sha512" }}
2022-01-27 04:26:18 +00:00
< script defer type = "text/javascript" id = "script-bundle" src = "{{ $bundleJS.RelPermalink }}" integrity = "{{ $bundleJS.Data.Integrity }}" data-copy = "{{ i18n " code . copy " } } " data-copied = "{{ i18n " code . copied " } } " > < / script >
2022-01-19 00:52:49 +00:00
{{ end }}
2021-08-11 05:28:33 +00:00
{{/* Icons */}}
2021-08-14 00:47:33 +00:00
{{ if templates.Exists "partials/favicons.html" }}
{{ partialCached "favicons.html" .Site }}
{{ else }}
2021-08-25 23:44:41 +00:00
< link rel = "apple-touch-icon" sizes = "180x180" href = "{{ " apple-touch-icon . png " | relURL } } " / >
< link rel = "icon" type = "image/png" sizes = "32x32" href = "{{ " favicon-32x32 . png " | relURL } } " / >
< link rel = "icon" type = "image/png" sizes = "16x16" href = "{{ " favicon-16x16 . png " | relURL } } " / >
< link rel = "manifest" href = "{{ " site . webmanifest " | relURL } } " / >
2021-08-14 00:47:33 +00:00
{{ end }}
2021-08-11 05:28:33 +00:00
{{/* Site Verification */}}
{{ with .Site.Params.verification.google }}
< meta name = "google-site-verification" content = "{{ . }}" / >
{{ end }}
{{ with .Site.Params.verification.bing }}
< meta name = "msvalidate.01" content = "{{ . }}" / >
{{ end }}
{{ with .Site.Params.verification.pinterest }}
< meta name = "p:domain_verify" content = "{{ . }}" / >
{{ end }}
{{ with .Site.Params.verification.yandex }}
< meta name = "yandex-verification" content = "{{ . }}" / >
{{ end }}
{{/* Social */}}
{{ template "_internal/opengraph.html" . }}
{{ template "_internal/twitter_cards.html" . }}
2021-08-16 07:06:59 +00:00
{{/* Schema */}}
2021-08-18 07:06:14 +00:00
{{ partial "schema.html" . }}
2021-08-11 05:28:33 +00:00
{{/* Me */}}
{{ with .Site.Author.name }}< meta name = "author" content = "{{ . }}" / > {{ end }}
2021-08-13 06:35:32 +00:00
{{ with .Site.Author.links }}
{{ range $links := . }}
{{ range $name, $url := $links }}< link href = "{{ $url }}" rel = "me" / > {{ end }}
{{ end }}
{{ end }}
2021-11-03 05:52:40 +00:00
{{/* Vendor */}}
{{ partial "vendor.html" . }}
2021-08-11 05:28:33 +00:00
{{/* Analytics */}}
2023-03-04 21:58:13 +00:00
{{ partial "analytics.html" . }}
2021-08-11 05:28:33 +00:00
{{/* Extend head - eg. for custom analytics scripts, etc. */}}
{{ if templates.Exists "partials/extend-head.html" }}
2022-11-22 00:03:28 +00:00
{{ partial "extend-head.html" .Site }}
2021-08-11 05:28:33 +00:00
{{ end }}
2023-03-04 21:58:13 +00:00
< / head >