Files
AVEF/imports/ui/ImportantDates.js

15 lines
279 B
JavaScript
Raw Normal View History

2018-08-14 10:56:12 -07:00
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;
}
});