mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-07 18:01:40 -05:00
14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
/**
|
|
* GET /
|
|
* Home page.
|
|
*/
|
|
|
|
var Course = require('./../models/Course')
|
|
|
|
exports.index = function(req, res) {
|
|
Course.find(function(err, courses){
|
|
res.render('curriculum/curriculum', {
|
|
title: 'Curriculum'
|
|
});
|
|
});
|
|
}; |