16 lines
521 B
HTML
16 lines
521 B
HTML
{{- with resources.Get "css/main.css" }}
|
|
{{- $opts := dict
|
|
"minify" (cond hugo.IsDevelopment false true)
|
|
"sourceMap" (cond hugo.IsDevelopment "linked" "none")
|
|
}}
|
|
{{- with . | css.Build $opts }}
|
|
{{- if hugo.IsDevelopment }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
|
{{- else }}
|
|
{{- with . | fingerprint }}
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|