Remove the main intermediate container. It wasn't acutally serving a purpose. Remove some of the BEM-style classes that also weren't really doing anything.
9 lines
357 B
HTML
9 lines
357 B
HTML
{{- with (partial .cssResource .page) }}
|
|
{{- 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 -}}
|