Last Updated: February 25, 2016
·
1.122K
· twilson63

iron-jade - flatiron web app template

A FlatIronJs Web App Template using Jade as the view engine.

http://twilson63.github.com/iron-jade/

Simple View Render Api

app.use(jade.plugin, { dir: 'app/views'});

app.router.get('/', function() {
  app.render(this.res, 'index', { title: 'Hello World' });
});