template(name="postsList")
.posts.
{{#each posts}}
{{> postItem}}
{{/each}}
While building the application:
client/views/posts/posts_list.jade: Jade syntax error: Expected {{else}} or block close for each
{{#each posts}}
template(name="postsList")
.posts {{#each posts}} {{> postItem}} {{/each}}
template(name="postsList")
.posts
| {{#each posts}}
| {{> postItem}}
| {{/each}}