hugo-book/layouts/partials/docs/html-head.html

24 lines
990 B
HTML
Raw Normal View History

2018-09-05 14:22:04 +00:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2019-07-15 16:25:21 +00:00
<title>{{ partial "docs/title" . }} | {{ .Site.Title -}}</title>
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 -->
{{- $styles := resources.Get "book.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $styles.RelPermalink }}">
2019-07-15 16:25:21 +00:00
{{- $search := resources.Get "search.js" | resources.ExecuteAsTemplate "search.js" . | resources.Minify | resources.Fingerprint }}
<script src="{{ $search.RelPermalink }}"></script>
2019-03-31 21:48:17 +00:00
<!-- Favicon -->
<link rel="icon" href="{{ "favicon.png" | relURL }}" type="image/x-icon">
2019-03-31 21:48:17 +00:00
<!-- RSS -->
2019-04-15 04:31:25 +00:00
{{ with .OutputFormats.Get "rss" -}}
{{ 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
{{ "<!--" | safeHTML }}
Made with Book Theme
https://github.com/alex-shpak/hugo-book
2019-04-15 04:31:25 +00:00
{{ "-->" | safeHTML }}