home.js 86 B

12345
  1. exports.index = function(req, res) {
  2. res.render('home', {
  3. title: 'Home'
  4. });
  5. };