mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
What happened to beta.13, beta.14, and beta.15? All unfortunately suffered from problems that made it either impossible or unwise to upgrade to those versions.
templating
Compiles Blaze templates defined in .html files. Also automatically includes Blaze on the client.
This build plugin parses all of the HTML files in your app and looks for three top-level tags:
<head>- appended to theheadsection of your HTML<body>- appended to thebodysection of your HTML<template name="templateName">- compiled into a Blaze template, which can be included with{{> templateName}} or referenced in JS code withTemplate.templateName`.
For more details, see the Meteor docs about templating and the Blaze project page.