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

25 lines
1,000 B
HTML
Raw Normal View History

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 -->
2018-11-07 12:54:18 +01:00
<link href="https://fonts.googleapis.com/css?family=Oxygen|Oxygen+Mono:300,400,700" rel="stylesheet">
2019-03-31 23:48:17 +02:00
<!-- Theme stylesheet, you can customize scss by creatig `assets/custom.scss` in your website -->
<link rel="stylesheet" href="{{ "normalize.min.css" | relURL }}">
2018-09-30 01:04:22 +02:00
{{ $styles := resources.Get "book.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $styles.RelPermalink }}">
2019-03-31 23:48:17 +02:00
<!-- Favicon -->
<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" -}}
{{ 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
{{ "<!--" | safeHTML }}
Made with Book Theme
https://github.com/alex-shpak/hugo-book
2019-04-15 06:31:25 +02:00
{{ "-->" | safeHTML }}