hugo-theme-termlite/layouts/partials/base/head/css.html
Eryn Wells 4327d34827 Clean up the partials directory
Sort partials into base and site directories
2024-06-28 09:07:33 -07:00

9 lines
350 B
HTML

{{- with (partial "base/css.html" .) }}
{{- 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 }}