2018-09-05 16:22:04 +02:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2018-10-30 16:46:25 +01:00
|
|
|
<title>{{- template "title" . }} | {{ .Site.Title -}}</title>
|
2018-09-05 16:22:04 +02:00
|
|
|
|
2019-03-31 23:48:17 +02:00
|
|
|
<!-- Fonts for the theme -->
|
2019-05-03 11:52:10 +02:00
|
|
|
{{ if default true .Site.Params.googleFonts }}
|
2019-05-02 04:21:11 +02:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Oxygen|Oxygen+Mono:300,400,700" rel="stylesheet">
|
|
|
|
{{ end }}
|
2019-03-31 23:48:17 +02:00
|
|
|
|
2019-04-09 22:59:29 +02:00
|
|
|
<!-- Theme stylesheet, you can customize scss by creatig `assets/custom.scss` in your website -->
|
2018-09-30 01:04:22 +02:00
|
|
|
{{ $styles := resources.Get "book.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
|
2019-02-12 15:44:36 +01:00
|
|
|
<link rel="stylesheet" href="{{ $styles.RelPermalink }}">
|
|
|
|
|
2019-03-31 23:48:17 +02:00
|
|
|
<!-- Favicon -->
|
2019-04-09 22:50:25 +02:00
|
|
|
<link rel="icon" href="{{ "favicon.png" | relURL }}" type="image/x-icon">
|
2019-03-31 23:48:17 +02:00
|
|
|
|
|
|
|
<!-- RSS -->
|
2019-04-15 06:31:25 +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 }}
|