Files
hyzendust.github.io/themes/hugo-theme-yue/layouts/_partials/head/scss.html
2025-11-11 18:07:05 +05:30

11 lines
439 B
HTML

{{ $opts := dict "transpiler" "libsass" "targetPath" "css/style.css" }}
{{- with resources.Get "scss/main.scss" | toCSS $opts }}
{{- 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 }}