Vulcan/client/templates/top.js

11 lines
224 B
JavaScript
Raw Normal View History

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