import './CurrentBoard.html'; Tracker.autorun(function() { Meteor.subscribe("pages"); }); Template.CurrentBoard.helpers({ currentBoardHTML: function() { let doc = Meteor.collections.Pages.findOne({name: 'Board'}); return doc === undefined ? "" : doc.html; } });