Files
roux/layouts/partials/css.html
T

13 lines
451 B
HTML
Raw Normal View History

{{- with resources.Get "css/main.css" }}
{{- $opts := dict "minify" (not hugo.IsDevelopment) }}
{{- with . | css.TailwindCSS $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 }}