mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
11 lines
No EOL
220 B
JavaScript
11 lines
No EOL
220 B
JavaScript
Template.top.show = function(){
|
|
return Session.equals('state', 'list');
|
|
};
|
|
|
|
Template.top.posts = function(){
|
|
var posts = Posts.find({}, {sort: {score: -1}});
|
|
return posts;
|
|
};
|
|
|
|
Template.top.rendered = function(){
|
|
}; |