Skip to content

Instantly share code, notes, and snippets.

@SachaG
Created February 4, 2013 23:33
Show Gist options
  • Save SachaG/4710744 to your computer and use it in GitHub Desktop.
Save SachaG/4710744 to your computer and use it in GitHub Desktop.
var Posts = new Meteor.Collection('posts');
if (Meteor.isClient) {
Template.posts.helpers({
posts: function() {
return Posts.find();
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment