export const navbar = ((req, res, next) => { let navbar = ''; res.locals.directory.primaryPages.forEach(page => { navbar += `
`; }) res.locals.navbarHtml = navbar; next(); }); export const page = ((req, res, next) => { const path = req.params.page ?? 'index'; res.locals.path = path; const page = res.locals.directory.get(path); if (!page) { next(); return; } res.locals.page = page; next(); });