add cache busting for CSS files via Hugo Pipes
This commit is contained in:
parent
117808b653
commit
27307e797f
|
@ -32,11 +32,14 @@
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap" rel="stylesheet">
|
||||||
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
<link href="{{ .Site.BaseURL }}css/fonts.css" rel="stylesheet">
|
{{ $fontstyle := resources.Get "css/fonts.css" | fingerprint }}
|
||||||
|
<link href="{{ $fontstyle.Permalink }}" rel="stylesheet">
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<link rel="stylesheet" type="text/css" media="screen" href="{{ .Site.BaseURL }}css/main.css" />
|
{{ $style := resources.Get "css/main.css" | fingerprint }}
|
||||||
|
<link rel="stylesheet" type="text/css" media="screen" href="{{ $style.Permalink }}" />
|
||||||
{{- if or (eq .Site.Params.mode "auto") (eq .Site.Params.mode "dark") -}}
|
{{- if or (eq .Site.Params.mode "auto") (eq .Site.Params.mode "dark") -}}
|
||||||
<link rel="stylesheet" type="text/css" href="{{ .Site.BaseURL }}css/dark.css" {{ if eq .Site.Params.mode "auto" }}media="(prefers-color-scheme: dark)"{{ end }} />
|
{{ $darkstyle := resources.Get "css/dark.css" | fingerprint }}
|
||||||
|
<link rel="stylesheet" type="text/css" href="{{ $darkstyle.Permalink }}" {{ if eq .Site.Params.mode "auto" }}media="(prefers-color-scheme: dark)"{{ end }} />
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<!-- Custom CSS style get applied last -->
|
<!-- Custom CSS style get applied last -->
|
||||||
{{- if isset .Site.Params "customcss" }}
|
{{- if isset .Site.Params "customcss" }}
|
||||||
|
|
Loading…
Reference in a new issue