sat-sw-website/themes/minimal-theme/layouts/partials/head/css.html

10 lines
379 B
HTML

{{- with resources.Get "sass/main.scss" | toCSS $options | minify }}
{{- 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 }}