function getIndex(req, res) { res.render('index', { title: 'SoundBirder', csrf_token: req.csrfToken(), locale: req.i18n.locale }); } function getQuizz(req, res) { res.render('quizz', { title: 'SoundBirder Quizz', csrf_token: req.csrfToken(), locale: req.i18n.locale }) } function getAbout(req, res) { res.render('about', { title: req.i18n.__('About SoundBirder'), locale: req.i18n.locale }); } module.exports = { getIndex, getQuizz, getAbout }