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

30 lines
1.2 KiB
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, if possible do not edit this stylesheet -->
<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
<!-- Custom stylesheet - for your changes -->
{{ if (fileExists "styles.css" | relURL) -}}
2019-04-02 23:22:10 +02:00
<link rel="stylesheet" href="{{ "styles.css" | relURL }}?v={{ now.Unix }}" type='text/css' media='all'>
{{- end }}
2019-03-31 23:48:17 +02:00
<!-- Favicon -->
<link rel="icon" href="{{ "img/favicon.ico" | relURL }}" type="image/x-icon">
2019-03-31 23:48:17 +02:00
<!-- RSS -->
{{ if .RSSLink }}
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title | default "" }}" />
<link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title | default "" }}" />
{{ end }}
{{ "<!--" | safeHTML }}
Made with Book Theme
https://github.com/alex-shpak/hugo-book
{{ "-->" | safeHTML }}