Last Updated: February 25, 2016
·
912
· twilson63

Jade Plugin for FlatIron

http://twilson63.github.com/jade.plugin/

Add Jade to your FlatIron Apps:

var jade = require('jade.plugin');
app.use(jade.plugin,  {dir: __dirname + '/views', ext: '.jade' });

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