blob: 93a632ecf9fc8c75bf0dc15fd4a89a8f14aef027 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* GET home page.
*
* '/'
*/
exports.index = function(req, res){
// res.render(TEMPLATE, OBJECT WITH VARIABLES)
res.render('index', { title: 'Express' });
};
|