Multiple routes use same template

how to make more than one route to use same template?

You can specify a template option in your route like this:

    Router.route('contactsList', {
    path: '/contacts',
    template: 'listView',
    waitOn: function () {
        return [
            //subscriptions
        ];
    }
});
1 Like