Files
sometimescode.com/themes/sometimescode/layouts/_partials/head/css.html
Chris Smith 4a7490f689 First commit
2025-09-25 20:49:17 +02:00

10 lines
336 B
HTML

{{- with resources.Get "css/main.css" }}
{{- if hugo.IsDevelopment }}
<link rel="stylesheet" href="{{ .RelPermalink }}">
{{- else }}
{{- with . | minify | fingerprint }}
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
{{- end }}
{{- end }}
{{- end }}