Files
meteor/packages/templating
David Glasser 7239b4051c 1.0.2-rc.6
2014-12-17 00:22:47 -08:00
..
2014-08-26 17:37:52 -07:00
2014-12-17 00:22:47 -08:00
2014-10-09 19:46:09 -07:00

templating

Define Blaze templates in .html files. Most Meteor apps use this package.

This build plugin parses all of the HTML files in your app and looks for three top-level tags:

  • <head> - appended to the head section of your HTML
  • <body> - appended to the body section of your HTML
  • <template name="templateName"> - compiled into a Blaze template, which can be included with {{> templateName}} or referenced in JS code with Template.templateName`.

For more details, see the Meteor docs about templating and the Blaze project page.