2024-07-23 08:46:52 -07:00
|
|
|
{{- with (partial .cssResource .page) }}
|
2024-10-13 23:13:16 -07:00
|
|
|
{{- if eq hugo.Environment "development" -}}
|
2024-06-28 09:07:33 -07:00
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
2024-10-13 23:13:16 -07:00
|
|
|
{{- else -}}
|
|
|
|
{{- with . | minify | fingerprint -}}
|
2024-06-28 09:07:33 -07:00
|
|
|
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
2024-10-13 23:13:16 -07:00
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|