diff --git a/packages/static-html/README.md b/packages/static-html/README.md index e69de29bb2..5368404ea9 100644 --- a/packages/static-html/README.md +++ b/packages/static-html/README.md @@ -0,0 +1,10 @@ +# static-html + +Essentially, an alternative to the `templating` package that doesn't compile Blaze templates. Mostly useful if you want to use Angular or React as your view layer and just want to get some static HTML content on your page as a render target for your view framework. + +This build plugin parses all of the `.html` files in your app and looks for top-level tags: + +- `` - appended to the `head` section of your HTML +- `` - appended to the `body` section of your HTML + +Attributes are supported on the `` tag, but not on ``. diff --git a/packages/static-html/package.js b/packages/static-html/package.js index ec1e8bb2b8..2cf3c522bf 100644 --- a/packages/static-html/package.js +++ b/packages/static-html/package.js @@ -2,6 +2,7 @@ Package.describe({ version: '0.0.1', // Brief, one-line summary of the package. summary: 'Define static page content in .html files', + git: 'https://github.com/meteor/meteor', // By default, Meteor will default to using README.md for documentation. // To avoid submitting documentation, set this field to null. documentation: 'README.md'