An addon for Ember CLI that precompiles static page content from Markdown and YAML Front Matter.
Use Ember CLI to install this addon to your app:
$ ember install ember-cli-static
Generate a static page from within your app:
$ ember generate page TITLE
Create a route to the page
component:
Router.map(function() {
this.route('page', { path: '/:id' });
});
Start your server and browse to http://localhost:4200/TITLE to see your page in action.
To start the development server:
$ make
To run all QUnit and CasperJS tests:
$ make test