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
        You need to use this keyword to get value from an array: 
<template name='postDetails'>
  title: {{title}}
  {{#each tag}}
    {{this}}
  {{/each}}
</template>
                                                                        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}}