Files
AVEF/imports/ui/News&Notices.js

13 lines
261 B
JavaScript
Raw Normal View History

import './News&Notices.html';
2018-08-14 10:56:12 -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;
}
});