Hello, currently I am working with Meteor and Blaze.
Here is how my routes are set up:
FlowRouter.route('/software', {
name: 'software',
action(params, queryParams)
{
BlazeLayout.render('App_body', {main_content: 'software_page'});
}
});
Within App_body, I am using main_content (which contains the name of a template) like this:
{{> Template.dynamic template=main_content}}
However, I have realized that I would like to include more than just "main_content" in App_body. Is there a method to define subparts for each template, and reference them accordingly to establish the logical connection I envision?