mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-19 01:01:27 -04:00
10 lines
142 B
JavaScript
10 lines
142 B
JavaScript
/**
|
|
* GET /
|
|
* Home page.
|
|
*/
|
|
|
|
exports.index = function(req, res) {
|
|
res.render('course/course', {
|
|
title: 'Curriculum',
|
|
});
|
|
}; |