{{ partial "plausible_head.html" . }}
{{ with resources.Get "js/text-interaction.js" }}
{{ if hugo.IsDevelopment }}
{{ with . | js.Build }}
{{ end }}
{{ else }}
{{ $opts := (dict "minify" true "targetPath" "js/txt.js") }}
{{ with . | js.Build $opts | fingerprint }}
{{ end }}
{{ end }}
{{ end }}
{{ with resources.Get "js/link-interaction.js" }}
{{ if hugo.IsDevelopment }}
{{ with . | js.Build }}
{{ end }}
{{ else }}
{{ $opts := (dict "minify" true "targetPath" "js/lnk.js") }}
{{ with . | js.Build $opts | fingerprint }}
{{ end }}
{{ end }}
{{ end }}
{{ with resources.Get "js/lightbox.js" }}
{{ if hugo.IsDevelopment }}
{{ with . | js.Build }}
{{ end }}
{{ else }}
{{ $opts := (dict "minify" true "targetPath" "js/lightbox.js") }}
{{ with . | js.Build $opts | fingerprint }}
{{ end }}
{{ end }}
{{ end }}
{{ with resources.Get "css/lightbox.css" }}
{{ if hugo.IsDevelopment }}
{{ with . }}
{{ end }}
{{ else }}
{{ with . | fingerprint }}
{{ end }}
{{ end }}
{{ end }}