posts_list.js 380 B

123456789101112131415161718192021222324252627
  1. /**
  2. * @file
  3. *
  4. *
  5. * User: marand
  6. * Date: 30/08/15
  7. * Time: 10:07
  8. */
  9. var postsData = [
  10. {
  11. title: "Introducing Telescope",
  12. url: "http://sachagreif.com/introducing-telescope"
  13. },
  14. {
  15. title: "Meteor",
  16. url: "http://meteor.com"
  17. },
  18. {
  19. title: "The Meteor book",
  20. url: "http://themeteorbook.com"
  21. }
  22. ];
  23. Template.postsList.helpers({
  24. posts: postsData
  25. });