spacing
This commit is contained in:
parent
e125630410
commit
904a0978bf
1 changed files with 4 additions and 1 deletions
|
@ -7,7 +7,10 @@ const utils = require('../utils/utils');
|
|||
// Home Page
|
||||
router.get('/', (_, res) => {
|
||||
readme.get()
|
||||
.then(data => res.render('index', { readme: marked.parse(data), firstname_placeholder: utils.randomFirstname() }));
|
||||
.then(data => res.render('index', {
|
||||
readme: marked.parse(data),
|
||||
firstname_placeholder: utils.randomFirstname()
|
||||
}));
|
||||
});
|
||||
|
||||
module.exports = router;
|
||||
|
|
Loading…
Reference in a new issue