Skip to content

Instantly share code, notes, and snippets.

@isterin
Last active January 2, 2016 15:29
Show Gist options
  • Save isterin/8324099 to your computer and use it in GitHub Desktop.
Save isterin/8324099 to your computer and use it in GitHub Desktop.
/*
* /routes/index.js
*/
/*
* / -> index
*
*/
exports.routes = function() {
return {
'/': {
get: index
}
}
}
var index = function(req, res){
res.render('index.hbs', { title: 'Express', name: 'Ilya Sterin' });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment