25 lines
1 KiB
HTML
25 lines
1 KiB
HTML
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ partial "docs/title" . }} | {{ .Site.Title -}}</title>
|
|
|
|
<!-- Theme stylesheet, you can customize scss by creating `assets/custom.scss` in your website -->
|
|
{{- $styles := resources.Get "book.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
|
|
<link rel="stylesheet" href="{{ $styles.RelPermalink }}">
|
|
|
|
{{ if default true .Site.Params.BookSearch }}
|
|
{{- $searchJS := resources.Get "search.js" | resources.ExecuteAsTemplate "search.js" . | resources.Minify | resources.Fingerprint }}
|
|
<script defer src="{{ $searchJS.RelPermalink }}"></script>
|
|
{{ end }}
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" href="{{ "favicon.png" | relURL }}" type="image/x-icon">
|
|
|
|
<!-- 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 }}
|