SyntaxFix
Write A Post
Hire A Developer
Questions
If you want to use dynamic variables
This won't work:
{{#each obj[key]}} ... {{/each}}
You need to do:
{{#each (lookup obj key)}} ... {{/each}}
see handlebars lookup helper and handlebars subexpressions.