How to write Iron-router nested template?
问题 I have 2 templates: 1) mainLayout.html -> general layout which must be used by all pages. (e.g. page title, navbar, footer) Router.configure({ layoutTemplate: 'mainLayout' }) <template name="mainLayout"> {{> header}} <div class="container-fluid"> {{> yield}} </div> </template> 2) specialLayout.html -> custom layout which is inheriting main-layout.html but with additional template (e.g. side/tab menu) How should I define specialLayout ? Note that specialLayout should have the title, navbar,