Add README for static-html

This commit is contained in:
Sashko Stubailo
2015-08-06 13:31:59 -07:00
parent 157a3d361c
commit 9d9f080377
2 changed files with 11 additions and 0 deletions

View File

@@ -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:
- `<head>` - appended to the `head` section of your HTML
- `<body>` - appended to the `body` section of your HTML
Attributes are supported on the `<body>` tag, but not on `<head>`.

View File

@@ -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'