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