Minor changes

This commit is contained in:
Esther
2020-06-22 17:44:15 +01:00
parent 58c9e84f78
commit db2ba0684b
3 changed files with 4 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
res.render('index', { title: 'Home', description: "Hello, I'm Esther" });
});
module.exports = router;