Jake Howard
56658a4d27
This is a getaround for https://github.com/gohugoio/hugo/issues/7207, which whilst poerhaps correct shouldn't be necessary
8 lines
253 B
HTML
8 lines
253 B
HTML
{{ $style := resources.Get . }}
|
|
|
|
{{ if strings.HasSuffix . ".scss" }}
|
|
{{ $style = toCSS $style }}
|
|
{{ end }}
|
|
|
|
{{ $style = minify $style | fingerprint}}
|
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}" />
|