2018-08-23 16:58:50 -07:00
|
|
|
import './Appreciation.html';
|
2018-08-14 10:56:12 -07:00
|
|
|
|
2018-08-23 16:58:50 -07:00
|
|
|
Tracker.autorun(function() {
|
|
|
|
|
Meteor.subscribe("pages");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Template.Appreciation.helpers({
|
|
|
|
|
appreciationHTML: function() {
|
|
|
|
|
let doc = Meteor.collections.Pages.findOne({name: 'Appreciation'});
|
|
|
|
|
|
|
|
|
|
return doc === undefined ? "" : doc.html;
|
|
|
|
|
}
|
|
|
|
|
});
|