String / Variable Concatenation to build Path for partial

Thanks @bep!
Just had to the ā€œ/ā€ in between the %sā€™s.

Working code:
{{ range $index, $component := $.Site.Params.components }} {{ $widget := (partial (printf "%s/%s" $.Site.Params.componentdir $component )) }} {{ $widget }} {{ end }}

The global Params within those partials are not working now though :confused: Ill have to read up on how to get those to call properly.