1
Fork 0
theorangeone.net-legacy/layouts/partials/style.html
Jake Howard 56658a4d27
Only convert scss files to css
This is a getaround for https://github.com/gohugoio/hugo/issues/7207, which whilst poerhaps correct shouldn't be necessary
2020-04-29 12:03:02 +01:00

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 }}" />