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 -->
|
2019-02-20 10:37:48 +01:00
|
|
|
<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 }}
|
2019-02-12 15:44:36 +01:00
|
|
|
<link rel="stylesheet" href="{{ $styles.RelPermalink }}">
|
|
|
|
|
2019-03-31 23:48:17 +02:00
|
|
|
<!-- Custom stylesheet - for your changes -->
|
2019-04-02 23:22:10 +02:00
|
|
|
{{ if (fileExists "static/img/banner.jpg") -}}
|
|
|
|
<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" | absURL }}" type="image/x-icon">
|
|
|
|
|
|
|
|
<!-- 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 }}
|
|
|
|
|
2019-02-12 15:44:36 +01:00
|
|
|
{{ "<!--" | safeHTML }}
|
|
|
|
Made with Book Theme
|
|
|
|
https://github.com/alex-shpak/hugo-book
|
|
|
|
{{ "-->" | safeHTML }}
|