Files
freeCodeCamp/controllers/home.js

11 lines
182 B
JavaScript
Raw Normal View History

/**
* GET /
2014-01-07 18:15:14 -05:00
* Home page.
*/
2014-01-13 04:34:54 -05:00
exports.index = function(req, res) {
res.render('home', {
title: 'Learn to Code JavaScript and get a Coding Job by Helping Nonprofits'
});
};