2020-02-24 10:00:39 +01:00
|
|
|
{{- $scratch := .Scratch.Get "scratch" -}}
|
|
|
|
{{- $CDN := $scratch.Get "CDN" -}}
|
2020-02-14 14:09:21 +01:00
|
|
|
|
2019-08-04 15:53:35 +02:00
|
|
|
<link rel="canonical" href="{{ .Permalink }}" />
|
2019-11-20 14:39:04 +01:00
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
2019-08-04 15:53:35 +02:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
2020-02-13 18:30:33 +01:00
|
|
|
|
|
|
|
{{- if .PrevInSection -}}
|
|
|
|
<link rel="prev" href="{{ .PrevInSection.Permalink }}" />
|
|
|
|
{{- end -}}
|
|
|
|
{{- if .NextInSection -}}
|
|
|
|
<link rel="next" href="{{ .NextInSection.Permalink }}" />
|
|
|
|
{{- end -}}
|
|
|
|
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- with .OutputFormats.Get "RSS" -}}
|
2019-08-24 13:32:41 +02:00
|
|
|
<link rel="alternate" href="{{ .RelPermalink }}" type="application/rss+xml" title="{{ $.Site.Title }}">
|
|
|
|
<link rel="feed" href="{{ .RelPermalink }}" type="application/rss+xml" title="{{ $.Site.Title }}">
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2019-08-18 19:36:52 +02:00
|
|
|
|
2020-02-13 18:30:33 +01:00
|
|
|
{{- /* style.min.css */ -}}
|
|
|
|
{{- $res := resources.Get "css/style.template.scss" -}}
|
2020-02-20 09:58:20 +01:00
|
|
|
{{- $options := dict "targetPath" "css/style.min.css" -}}
|
|
|
|
{{- $options = dict "includePaths" (slice "config/css") | merge $options -}}
|
|
|
|
{{- $options = dict "outputStyle" "compressed" | merge $options -}}
|
|
|
|
{{- $options = dict "enableSourceMap" true | merge $options -}}
|
2020-02-13 18:30:33 +01:00
|
|
|
{{- $res = resources.ExecuteAsTemplate "style.scss" . $res | toCSS $options -}}
|
|
|
|
<link rel="stylesheet" href="{{ $res.RelPermalink }}">
|
2020-02-02 07:43:29 +01:00
|
|
|
|
2020-02-06 17:10:00 +01:00
|
|
|
{{- /* Font Awesome https://fontawesome.com/ */ -}}
|
2020-02-16 19:32:52 +01:00
|
|
|
{{- with $CDN.fontawesomeFreeCSS -}}
|
2020-02-14 14:09:21 +01:00
|
|
|
{{- . | safeHTML -}}
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- else -}}
|
2020-02-02 07:43:29 +01:00
|
|
|
{{- $res := resources.Get "css/lib/fontawesome-free/all.min.css" -}}
|
2019-08-24 13:32:41 +02:00
|
|
|
<link rel="stylesheet" href="{{ $res.RelPermalink }}">
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- end -}}
|
2020-02-06 17:10:00 +01:00
|
|
|
|
|
|
|
{{- /* Animate.css https://github.com/daneden/animate.css */ -}}
|
2020-02-16 19:32:52 +01:00
|
|
|
{{- with $CDN.animateCSS -}}
|
2020-02-14 14:09:21 +01:00
|
|
|
{{- . | safeHTML -}}
|
2020-01-31 15:53:04 +01:00
|
|
|
{{- else -}}
|
2020-02-02 07:43:29 +01:00
|
|
|
{{ $res := resources.Get "css/lib/animate/animate.min.css" -}}
|
2019-08-22 20:54:26 +02:00
|
|
|
<link rel="stylesheet" href="{{ $res.RelPermalink }}">
|
2020-02-06 17:10:00 +01:00
|
|
|
{{- end -}}
|