I had the same problem. Based on your answer, I found a working solution. It should go on the client side of Meteor.
Handlebars.registerHelper('ifRouteIs', function (routeName, options) { if (Meteor.Router.page() === routeName) { return options.fn(this); } return options.inverse(this); });
source share