'use strict'; module.exports = { '/': { // Get homepage get: (req, res) => { return res.render('index', { title: 'Blog test page', }); }, }, };