soundbirder/controllers/index.js

20 lines
350 B
JavaScript
Raw Normal View History

2022-08-17 14:27:37 +02:00
function getIndex(req, res) {
res.render('index', {
title: 'SoundBirder',
2022-08-29 07:26:21 +02:00
csrf_token: req.csrfToken(),
locale: req.i18n.locale
});
2022-08-17 14:27:37 +02:00
}
function getAbout(req, res) {
2022-08-29 07:26:21 +02:00
res.render('about', {
title: 'About SoundBirder',
locale: req.i18n.locale
});
}
2022-08-17 14:27:37 +02:00
module.exports = {
getIndex,
getAbout
2022-08-17 14:27:37 +02:00
}