fix partial paths on the customers page (#2325)

This commit is contained in:
trean
2026-05-04 18:37:21 +02:00
committed by GitHub
parent a218cc9222
commit 69e6567e5c
@@ -4,10 +4,10 @@
{{ range .Params.sections }}
{{ $type := .type }}
{{ $special := dict
"cta-banner" "partials/cta-banner.html"
"cta-banner" "cta-banner.html"
}}
{{ $partialPath := (index $special $type) | default (printf "partials/industries/industries-%s.html" $type) }}
{{ $partialPath := (index $special $type) | default (printf "industries/industries-%s.html" $type) }}
{{ partial $partialPath (dict "Params" .) }}
{{ end }}