UNPKG

zally-web-ui

Version:
11 lines (8 loc) 273 B
'use strict'; const path = require('path'); module.exports = (options) => { return function indexHandler (req, res) { const mountpath = path.join(req.app.mountpath, '/'); res.render('index', { mountpath: mountpath, headTitle: options.env.HEAD_TITLE }); }; };