23 lines
683 B
HTML
23 lines
683 B
HTML
{{ with (templates.Defer (dict "key" "global")) }}
|
|
{{ $t := debug.Timer "tailwindcss" }}
|
|
{{ with resources.Get "css/styles.css" }}
|
|
{{ $opts := dict
|
|
"inlineImports" true
|
|
"optimize" (not hugo.IsDevelopment)
|
|
}}
|
|
{{ with . | css.TailwindCSS $opts }}
|
|
{{ 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 }}
|
|
{{ end }}
|
|
{{ $t.Stop }}
|
|
{{ end }} |