Vulcan/client/templates/top.js

11 lines
220 B
JavaScript
Raw Normal View History

Template.top.show = function(){
return Session.equals('state', 'list');
};
Template.top.posts = function(){
2012-09-11 16:56:15 +10:00
var posts = Posts.find({}, {sort: {score: -1}});
return posts;
};
Template.top.rendered = function(){
};