mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 03:16:30 +01:00
46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
{{- $CDN := .Scratch.Get "CDN" -}}
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}" />
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
|
<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">
|
|
|
|
{{- if .PrevInSection -}}
|
|
<link rel="prev" href="{{ .PrevInSection.Permalink }}" />
|
|
{{- end -}}
|
|
{{- if .NextInSection -}}
|
|
<link rel="next" href="{{ .NextInSection.Permalink }}" />
|
|
{{- end -}}
|
|
|
|
{{- with .OutputFormats.Get "RSS" -}}
|
|
<link rel="alternate" href="{{ .RelPermalink }}" type="application/rss+xml" title="{{ $.Site.Title }}">
|
|
<link rel="feed" href="{{ .RelPermalink }}" type="application/rss+xml" title="{{ $.Site.Title }}">
|
|
{{- end -}}
|
|
|
|
{{- /* style.min.css */ -}}
|
|
{{- $res := resources.Get "css/style.template.scss" -}}
|
|
{{- $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 -}}
|
|
{{- $res = resources.ExecuteAsTemplate "style.scss" . $res | toCSS $options -}}
|
|
<link rel="stylesheet" href="{{ $res.RelPermalink }}">
|
|
|
|
{{- /* Font Awesome https://fontawesome.com/ */ -}}
|
|
{{- with $CDN.fontawesomeFreeCSS -}}
|
|
{{- . | safeHTML -}}
|
|
{{- else -}}
|
|
{{- $res := resources.Get "css/lib/fontawesome-free/all.min.css" -}}
|
|
<link rel="stylesheet" href="{{ $res.RelPermalink }}">
|
|
{{- end -}}
|
|
|
|
{{- /* Animate.css https://github.com/daneden/animate.css */ -}}
|
|
{{- with $CDN.animateCSS -}}
|
|
{{- . | safeHTML -}}
|
|
{{- else -}}
|
|
{{ $res := resources.Get "css/lib/animate/animate.min.css" -}}
|
|
<link rel="stylesheet" href="{{ $res.RelPermalink }}">
|
|
{{- end -}}
|