post_item.html 758 B

12345678910111213141516171819
  1. <template name="postItem">
  2. <div class="post">
  3. <div class="post-content">
  4. <h3><a href="{{url}}">{{title}}</a><span>{{domain}}</span></h3>
  5. <p>
  6. submitted by {{author}},
  7. <a href="{{pathFor 'postPage' }}">{{commentsCount}} comments</a>
  8. {{#if ownPost}}<a href="{{pathFor 'postEdit' }}">Edit</a>{{/if}}
  9. </p>
  10. </div>
  11. {{! La route postPage nécessite un _id, donc IR va le chercher dans le
  12. data context, qui se trouve à ce stade être le document concerné, qui
  13. possède bien un _id.
  14. Si ce n'avait pas été le cas, on aurait pu le spécifier:
  15. pathFor 'postPage' someOtherPostId
  16. }}
  17. <a href="{{pathFor 'postPage'}}" class="discuss btn btn-default">Discuss</a>
  18. </div>
  19. </template>