freeCodeCamp/controllers/curriculum.js

13 lines
171 B
JavaScript
Raw Normal View History

2014-10-13 21:14:51 +00:00
/**
* GET /
* Home page.
*/
exports.index = function(req, res) {
res.render('curriculum/curriculum', {
title: 'Curriculum',
test: 'hi'
});
};