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