Skip to content

Instantly share code, notes, and snippets.

@dustinc
Created August 2, 2012 18:54
Show Gist options
  • Save dustinc/3239691 to your computer and use it in GitHub Desktop.
Save dustinc/3239691 to your computer and use it in GitHub Desktop.
var default_vars = {
title: 'Serious Title Stuffs'
};
exports.index = function(req, res){
default_vars.title = default_vars.title + ' Index Page';
res.render('index', default_vars);
};
exports.dustin = function(req, res) {
res.render('index', default_vars);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment