2018-09-05 14:22:04 +00:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2019-11-16 21:00:50 +00:00
|
|
|
<meta name="description" content="{{ partial "docs/title" . }}">
|
2019-10-03 12:10:03 +00:00
|
|
|
{{- template "_internal/opengraph.html" . -}}
|
|
|
|
|
2019-07-15 16:25:21 +00:00
|
|
|
<title>{{ partial "docs/title" . }} | {{ .Site.Title -}}</title>
|
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
|
|
|
|
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 }}
|
2019-09-02 02:55:41 +00:00
|
|
|
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" integrity="{{ $styles.Data.Integrity }}">
|
2019-02-12 14:44:36 +00:00
|
|
|
|
2019-07-16 12:34:02 +00:00
|
|
|
{{ if default true .Site.Params.BookSearch }}
|
2019-11-13 23:48:11 +00:00
|
|
|
{{- .Scratch.Set "bookSearchConfig" (i18n "bookSearchConfig") -}} <!-- Remove after https://github.com/gohugoio/hugo/issues/6331 -->
|
2019-11-13 23:23:01 +00:00
|
|
|
{{- $searchJSFile := printf "%s.search.js" .Language.Lang -}}
|
2019-11-10 13:35:07 +00:00
|
|
|
{{- $searchJS := resources.Get "search.js" | resources.ExecuteAsTemplate $searchJSFile . | resources.Minify | resources.Fingerprint }}
|
2019-09-02 02:55:41 +00:00
|
|
|
<script defer src="{{ $searchJS.RelPermalink }}" integrity="{{ $searchJS.Data.Integrity }}"></script>
|
2019-07-16 12:34:02 +00:00
|
|
|
{{ end }}
|
2019-07-15 16:25:21 +00:00
|
|
|
|
2019-10-08 15:03:40 +00:00
|
|
|
{{- template "_internal/google_analytics_async.html" . -}}
|
2019-03-31 21:48:17 +00:00
|
|
|
|
|
|
|
<!-- RSS -->
|
2019-04-15 04:31:25 +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 }}
|