Change home page title

This commit is contained in:
Mikołaj Pich 2017-11-28 14:48:05 +01:00
parent 3bb709b9dc
commit 98ff5b2ada
3 changed files with 9 additions and 7 deletions

View file

@ -1,6 +0,0 @@
body
padding: 50px
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
a
color: #00B7FF

View file

@ -0,0 +1,8 @@
body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
a {
color: #00B7FF
}

View file

@ -3,7 +3,7 @@ var router = express.Router();
/* GET home page. */ /* GET home page. */
router.get('/', function(req, res, next) { router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' }); res.render('index', { title: 'fake-log' });
}); });
module.exports = router; module.exports = router;