start building out views

This commit is contained in:
Michael Q Larson
2014-10-13 14:14:51 -07:00
parent d87db465ad
commit a5985cd73d
435 changed files with 248550 additions and 1172 deletions

12
controllers/curriculum.js Normal file
View File

@@ -0,0 +1,12 @@
/**
* GET /
* Home page.
*/
exports.index = function(req, res) {
res.render('curriculum/curriculum', {
title: 'Curriculum',
test: 'hi'
});
};