dc09-hugo/themes/qogir/layouts/partials/head/css.html

12 lines
525 B
HTML

{{- $file_from := printf "scss/%s.scss" .Css }}
{{- $file_to := printf "css/%s.css" .Css }}
{{- $options := dict "transpiler" "libsass" "targetPath" $file_to }}
{{- with resources.Get $file_from | toCSS $options }}
{{- 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 }}