Files
the-example-app-nodejs/routes/about.js
2017-11-07 17:33:32 +01:00

11 lines
293 B
JavaScript

const { getLandingPage } = require('../services/contentful')
exports.getAbout = async (req, res, next) => {
const landingPage = await getLandingPage('about',
res.locals.currentLocale.code,
res.locals.currentApi.id
)
res.render('landingPage', { title: 'About', landingPage })
}