15 lines
279 B
JavaScript
15 lines
279 B
JavaScript
import './ImportantDates.html';
|
|
|
|
|
|
Tracker.autorun(function() {
|
|
Meteor.subscribe("pages");
|
|
});
|
|
|
|
|
|
Template.ImportantDates.helpers({
|
|
importantDatesHTML: function() {
|
|
let doc = Meteor.collections.Pages.findOne({name: 'Dates'});
|
|
|
|
return doc === undefined ? "" : doc.html;
|
|
}
|
|
}); |