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

12 lines
310 B
JavaScript

const express = require('express')
const {getLandingPage} = require('../services/contentful')
const router = express.Router()
/* GET home page. */
router.get('/', async function (req, res, next) {
const landingPage = await getLandingPage()
res.render('index', { landingPage })
})
module.exports = router