post_item.html 878 B

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