12 lines
485 B
HTML
12 lines
485 B
HTML
{{ $options := (dict "targetPath" "css/styles.css" "outputStyle" "compressed") }}
|
|
{{ $style := resources.Get "sass/main.scss" | toCSS $options | minify }}
|
|
{{- with $style }}
|
|
{{- if eq hugo.Environment "development" }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
|
{{- else }}
|
|
{{- with . | minify | fingerprint }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|