Multiple yield in Meteor.js application template
I have one general {{>yield}} for iron-router in a layout file which renders my pages, which are templates. In one of my pages, I have a side menu and according to the selection in this menu, I want to load different templates related to this page in this page. How can I achieve this? I have done a similar thing using iron-router's layout template option. Say I want to create a home view with multiple views/templates inside of this home view that will change. First I would declare my route: Router.map(function () { this.route('home', { path: '/', template: 'myHomeTemplate', layoutTemplate: