Compare commits
2 Commits
e74e82a6b7
...
0ca1bd9157
Author | SHA1 | Date | |
---|---|---|---|
0ca1bd9157 | |||
85df577a19 |
@ -19,17 +19,20 @@
|
||||
{{ if (fileExists "static/safari-pinned-tab.svg") -}}
|
||||
<link rel="mask-icon" href="{{ "/safari-pinned-tab.svg" | absURL }}" color="#5bbad5">
|
||||
{{ 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") -}}
|
||||
{{ partial "meta-tags.html" . }}
|
||||
{{ end -}}
|
||||
{{ with resources.Get "css/katex.css" -}}
|
||||
<link href="{{ .Permalink }}" rel="stylesheet">
|
||||
<link href="{{ .Permalink -}}" rel="stylesheet">
|
||||
{{ end -}}
|
||||
{{ $normalizeStyle := resources.Get "css/normalize.css" }}
|
||||
{{ $mainStyle := resources.Get "css/style.css" }}
|
||||
{{ $overrideStyle := resources.Get "css/override.css" }}
|
||||
{{ $printStyle := resources.Get "css/print.css" }}
|
||||
{{ $style := slice $normalizeStyle $mainStyle $overrideStyle $printStyle | resources.Concat "css/concated.css" | minify }}
|
||||
{{ $normalizeStyle := resources.Get "css/normalize.css" -}}
|
||||
{{ $mainStyle := resources.Get "css/style.css" -}}
|
||||
{{ $overrideStyle := resources.Get "css/override.css" -}}
|
||||
{{ $printStyle := resources.Get "css/print.css" -}}
|
||||
{{ $style := slice $normalizeStyle $mainStyle $overrideStyle $printStyle | resources.Concat "css/concated.css" | minify -}}
|
||||
<link href="{{ $style.Permalink }}" rel="stylesheet">
|
||||
{{ range .AlternativeOutputFormats -}}
|
||||
{{ 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