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