2018-09-05 14:22:04 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2020-03-13 17:15:26 +00:00
|
|
|
<meta name="description" content="{{ default .Summary .Description }}">
|
2020-05-01 15:35:08 +00:00
|
|
|
<meta name="theme-color" content="#FFFFFF">
|
2021-09-26 19:47:58 +00:00
|
|
|
<meta name="color-scheme" content="light dark">
|
2020-03-13 17:14:22 +00:00
|
|
|
|
2022-04-26 11:14:22 +00:00
|
|
|
{{- with .Page.Params.BookHref -}}
|
|
|
|
<meta http-equiv="Refresh" content="0; url='{{ . }}'" />
|
|
|
|
{{- end -}}
|
|
|
|
|
2019-10-03 12:10:03 +00:00
|
|
|
{{- template "_internal/opengraph.html" . -}}
|
|
|
|
|
2021-09-27 07:36:02 +00:00
|
|
|
<title>{{ partial "docs/html-head-title" . }}</title>
|
2020-05-01 15:35:08 +00:00
|
|
|
|
|
|
|
{{- $manifest := resources.Get "manifest.json" | resources.ExecuteAsTemplate "manifest.json" . }}
|
|
|
|
<link rel="manifest" href="{{ $manifest.RelPermalink }}">
|
2019-10-08 15:03:40 +00:00
|
|
|
<link rel="icon" href="{{ "favicon.png" | relURL }}" type="image/x-icon">
|
2018-09-05 14:22:04 +00:00
|
|
|
|
2020-04-02 20:47:36 +00:00
|
|
|
{{- range .Translations }}
|
2022-01-13 18:19:54 +00:00
|
|
|
<link rel="alternate" hreflang="{{ default .Language.Lang .Site.LanguageCode }}" href="{{ .Permalink }}" title="{{ partial "docs/title" . }}">
|
2021-05-19 18:26:21 +00:00
|
|
|
{{- end -}}
|
2020-04-02 20:47:36 +00:00
|
|
|
|
2019-07-15 16:25:21 +00:00
|
|
|
<!-- Theme stylesheet, you can customize scss by creating `assets/custom.scss` in your website -->
|
2019-10-08 15:03:40 +00:00
|
|
|
{{- $styles := resources.Get "book.scss" | resources.ExecuteAsTemplate "book.scss" . | resources.ToCSS | resources.Minify | resources.Fingerprint }}
|
2021-05-20 22:50:38 +00:00
|
|
|
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" {{ template "integrity" $styles }}>
|
2019-02-12 14:44:36 +00:00
|
|
|
|
2021-05-19 18:26:21 +00:00
|
|
|
{{- 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="{{ "flexsearch.min.js" | relURL }}"></script>
|
2021-05-20 22:50:38 +00:00
|
|
|
<script defer src="{{ $searchJS.RelPermalink }}" {{ template "integrity" $searchJS }}></script>
|
2020-04-02 20:47:36 +00:00
|
|
|
{{ end -}}
|
2019-07-15 16:25:21 +00:00
|
|
|
|
2021-05-19 18:26:21 +00:00
|
|
|
{{- if .Site.Params.BookServiceWorker -}}
|
|
|
|
{{- $swJS := resources.Get "sw-register.js" | resources.ExecuteAsTemplate "sw.js" . | resources.Minify | resources.Fingerprint }}
|
2021-05-20 22:50:38 +00:00
|
|
|
<script defer src="{{ $swJS.RelPermalink }}" {{ template "integrity" $swJS }}></script>
|
2020-04-12 18:50:03 +00:00
|
|
|
{{ end -}}
|
|
|
|
|
2021-10-19 20:05:41 +00:00
|
|
|
{{- template "_internal/google_analytics.html" . -}}
|
2019-03-31 21:48:17 +00:00
|
|
|
|
|
|
|
<!-- RSS -->
|
2020-04-02 20:47:36 +00:00
|
|
|
{{- with .OutputFormats.Get "rss" -}}
|
2019-04-22 20:19:08 +00:00
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
2019-04-15 04:31:25 +00:00
|
|
|
{{ end -}}
|
2019-03-31 21:48:17 +00:00
|
|
|
|
2019-02-12 14:44:36 +00:00
|
|
|
{{ "<!--" | safeHTML }}
|
|
|
|
Made with Book Theme
|
|
|
|
https://github.com/alex-shpak/hugo-book
|
2019-04-15 04:31:25 +00:00
|
|
|
{{ "-->" | safeHTML }}
|
2021-05-20 22:50:38 +00:00
|
|
|
|
|
|
|
{{- define "integrity" -}}
|
|
|
|
{{- if (urls.Parse .Permalink).Host -}}
|
|
|
|
integrity="{{ .Data.Integrity }}" crossorigin="anonymous"
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|