I want create a posts model, with tags, and be able to display all tags for each post. You know a best way to do it ??
I tried this
This code won't work:
{{#each tag}} {{tag}} {{/each}}
because "tag" here refers to both the list and an element in that list. Try:
{{#each tags}} {{tag}} {{/each}}