Change home page title
This commit is contained in:
parent
3bb709b9dc
commit
98ff5b2ada
3 changed files with 9 additions and 7 deletions
|
@ -1,6 +0,0 @@
|
||||||
body
|
|
||||||
padding: 50px
|
|
||||||
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
|
|
||||||
|
|
||||||
a
|
|
||||||
color: #00B7FF
|
|
8
public/stylesheets/style.scss
Normal file
8
public/stylesheets/style.scss
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
body {
|
||||||
|
padding: 50px;
|
||||||
|
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #00B7FF
|
||||||
|
}
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue