UNPKG

generator-roosevelt

Version:

🏭🧸 Command line application for creating Roosevelt apps.

9 lines (8 loc) 297 B
module.exports = (router, app) => { router.route('/secondPage').get(async (req, res) => { const model = await require('models/global')(req, res) model.content.pageTitle = 'Second page' model.variable = 'variable with contents: "hi there!"' res.render('secondPage', model) }) }