Template inheritance for Angular JS
npm install angular-blocks

Block style template inheritance for AngularJS inspired by Jade, Handlebars, and Django.
Requires jquery.
Download angular-blocks.min.js or install with bower.
``bash`
$ bower install angular-blocks --save
Load angular-blocks.min.js then add the angular-blocks module to your Angular app.
`javascript`
angular.module('app', ['angular-blocks']);
Given the template below:
`html`
` Foohtml`
Becomes:
` :header Foohtml`
` Foohtml`
Becomes:
` :header Foo :contenthtml`
` Foohtml`
Becomes:
` :header :content Foohtml`
` Foohtml`
Becomes:
` :header Foo :contenthtml`
` Foohtml`
Becomes:
` :header :content Foohtml`
See the spec.
The project requires Bower, Grunt, and PhantomJS. Once you have installed them, you can build, test, and run the project.
To build and run tests, run either...
`bash`
$ make install
or
`bash``
$ npm install
$ bower install
$ grunt build
Copyright (c) 2013 William L. Bunselmeyer. https://github.com/wmluke/angular-blocks
Licensed under the MIT License