mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-16 10:01:13 -04:00
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
exports.index = function(req, res){
|
|
res.render('index');
|
|
};
|
|
|
|
exports.partial = function (req, res) {
|
|
var name = req.params.name;
|
|
res.render('partials/partial' + name);
|
|
}; |