I want to create a message model with tags and be able to display all the tags for each message. Do you know the best way to do this?
I tried this
<template name='postsLists'> {{#each post}} {{> postDetails }} {{/each}} </template> <template name='postDetails'> title: {{title}} {{#each tag}} {{tag}} {{/each}} </template>
source share