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