Compare commits
No commits in common. "0ca1bd9157e1be7e1281855a90c5aef7066c1ccc" and "e74e82a6b70063441c7762e9ba0806212ef41782" have entirely different histories.
0ca1bd9157
...
e74e82a6b7
@ -19,20 +19,17 @@
|
|||||||
{{ if (fileExists "static/safari-pinned-tab.svg") -}}
|
{{ if (fileExists "static/safari-pinned-tab.svg") -}}
|
||||||
<link rel="mask-icon" href="{{ "/safari-pinned-tab.svg" | absURL }}" color="#5bbad5">
|
<link rel="mask-icon" href="{{ "/safari-pinned-tab.svg" | absURL }}" color="#5bbad5">
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
{{ if isset $.Site.Params "mastodon_profile_link" -}}
|
|
||||||
<link rel="me" href="{{- $.Site.Params.mastodon_profile_link -}}">
|
|
||||||
{{ end -}}
|
|
||||||
{{ if (fileExists "layouts/partials/meta-tags.html") -}}
|
{{ if (fileExists "layouts/partials/meta-tags.html") -}}
|
||||||
{{ partial "meta-tags.html" . }}
|
{{ partial "meta-tags.html" . }}
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
{{ with resources.Get "css/katex.css" -}}
|
{{ with resources.Get "css/katex.css" -}}
|
||||||
<link href="{{ .Permalink -}}" rel="stylesheet">
|
<link href="{{ .Permalink }}" rel="stylesheet">
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
{{ $normalizeStyle := resources.Get "css/normalize.css" -}}
|
{{ $normalizeStyle := resources.Get "css/normalize.css" }}
|
||||||
{{ $mainStyle := resources.Get "css/style.css" -}}
|
{{ $mainStyle := resources.Get "css/style.css" }}
|
||||||
{{ $overrideStyle := resources.Get "css/override.css" -}}
|
{{ $overrideStyle := resources.Get "css/override.css" }}
|
||||||
{{ $printStyle := resources.Get "css/print.css" -}}
|
{{ $printStyle := resources.Get "css/print.css" }}
|
||||||
{{ $style := slice $normalizeStyle $mainStyle $overrideStyle $printStyle | resources.Concat "css/concated.css" | minify -}}
|
{{ $style := slice $normalizeStyle $mainStyle $overrideStyle $printStyle | resources.Concat "css/concated.css" | minify }}
|
||||||
<link href="{{ $style.Permalink }}" rel="stylesheet">
|
<link href="{{ $style.Permalink }}" rel="stylesheet">
|
||||||
{{ range .AlternativeOutputFormats -}}
|
{{ range .AlternativeOutputFormats -}}
|
||||||
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||||
|
Loading…
Reference in New Issue
Block a user