post_page.html 201 B

12345678910
  1. <template name="postPage">
  2. <div class="post-page page">
  3. {{> postItem}}
  4. <ul class="comments">
  5. {{#each comments}}
  6. {{> commentItem}}
  7. {{/each}}
  8. </ul>
  9. </div>
  10. </template>