In my home (index.html) file I have this
{{ range $.Params.one.two }}
{{ partial "partial" (dict "context" . "three" .three ) }}
{{ end }}
Inside the partial I have something like this
{{ range .three }}
{{ end }}
My front matter looks like this,
one:
two:
- three:
- hello
- world
This produces an error: range can’t iterate over
When debugging {{ printf "%#v" .three }}
[]interface {}{"hello","world"}
^ I think the empty interface is problematic. Any pointers?