diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-09-20 22:27:35 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-09-20 22:27:35 +0000 |
| commit | 9b5f3fad7068298265dbbc8a65077f7917a090a5 (patch) | |
| tree | 0905b29eb7c03d6bc6e16dd1ebcd1ec9b6b83320 /themes/hugo-book/layouts/_partials/docs/html-head.html | |
| parent | super simple setup guide (diff) | |
updated hugo-book theme
Diffstat (limited to 'themes/hugo-book/layouts/_partials/docs/html-head.html')
| -rw-r--r-- | themes/hugo-book/layouts/_partials/docs/html-head.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/_partials/docs/html-head.html b/themes/hugo-book/layouts/_partials/docs/html-head.html new file mode 100644 index 0000000..6a6d0ec --- /dev/null +++ b/themes/hugo-book/layouts/_partials/docs/html-head.html @@ -0,0 +1,56 @@ +<meta charset="UTF-8"> +<meta name="viewport" content="width=device-width, initial-scale=1.0"> +<meta name="description" content="{{ default .Summary .Description }}"> +<meta name="theme-color" media="(prefers-color-scheme: light)" content="#ffffff"> +<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#343a40"> +<meta name="color-scheme" content="light dark"> + +{{- with .Page.Params.BookHref -}} + <meta http-equiv="Refresh" content="0; url='{{ . }}'" /> +{{- end -}} + +{{- template "_internal/opengraph.html" . -}} + +<title>{{ partial "docs/html-head-title" . }}</title> +{{ partial "docs/html-head-favicon" . }} + +{{- $manifest := resources.Get "manifest.json" | resources.ExecuteAsTemplate "manifest.json" . }} +<link rel="manifest" href="{{ $manifest.RelPermalink }}"> +<link rel="canonical" href="{{ .Permalink }}"> + +{{- range .Translations }} + <link rel="alternate" hreflang="{{ default .Site.LanguageCode .Language.Lang }}" href="{{ .Permalink }}" title="{{ partial "docs/title" . }}"> +{{- end -}} + +<!-- Theme stylesheet, you can customize scss by creating `assets/custom.scss` in your website --> +{{- $styles := resources.Get "book.scss" | resources.ExecuteAsTemplate "book.scss" . | css.Sass | resources.Minify | resources.Fingerprint }} +<link rel="stylesheet" href="{{ $styles.RelPermalink }}" {{ template "integrity" $styles }}> +{{- if default true .Site.Params.BookSearch -}} + {{- $searchJSFile := printf "%s.search.js" .Language.Lang }} + {{- $searchJS := resources.Get "search.js" | resources.ExecuteAsTemplate $searchJSFile . | resources.Minify | resources.Fingerprint }} + <script defer src="{{ "fuse.min.js" | relURL }}"></script> + <script defer src="{{ $searchJS.RelPermalink }}" {{ template "integrity" $searchJS }}></script> +{{ end -}} + +{{- if .Site.Params.BookServiceWorker -}} + {{- $swJS := resources.Get "sw-register.js" | resources.ExecuteAsTemplate "sw.js" . | resources.Minify | resources.Fingerprint }} + <script defer src="{{ $swJS.RelPermalink }}" {{ template "integrity" $swJS }}></script> +{{ end -}} + +{{- template "_internal/google_analytics.html" . -}} + +<!-- RSS --> +{{- with .OutputFormats.Get "rss" -}} + {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} +{{ end -}} + +{{ "<!--" | safeHTML }} +Made with Book Theme +https://github.com/alex-shpak/hugo-book +{{ "-->" | safeHTML }} + +{{- define "integrity" -}} + {{- if (urls.Parse .Permalink).Host -}} + integrity="{{ .Data.Integrity }}" crossorigin="anonymous" + {{- end -}} +{{- end -}} |
