Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.22 KB

README.md

File metadata and controls

54 lines (39 loc) · 1.22 KB

A Meteor Blaze powered Layout component for dynamic rendering and data. Its major features are:

  1. Dynamically set the layout template and data context.
  2. Define yield regions to dynamically render templates into.
  3. Never re-render templates unless they change

Usage in Templates

<body>
  {{#Layout template="MyLayout"}}
    This content will go into the main yield region.
    
    {{#contentFor region="footer"}}
      This is some footer content
    {{/contentFor}}
  {{/Layout}}
</body>

<template name="MyLayout">
  <h1>My Layout</h1>
  
  <div>
    {{> yield}}
  </div>
  
  <footer>
    {{> yield region="footer"}}
  </footer>
</template>

Usage as a Component

var layout = UI.render(Layout.extend({template: 'MyLayout'});
UI.DomRange.insert(layout.dom, document.body);

// set the layout template
layout.template('AnotherLayoutTemplate');

// set the layout data context
layout.setData({title: 'Some data context'});

// render a template into the main region {{> yield}}
layout.setRegion('SomeTemplateName');

// render a template into a named region
layout.setRegion('footer', 'SomeFooterTemplate');

Integration with IronRouter

This package is automatically included with Iron Router.