mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-04-26 01:49:23 -05:00
Stripped down the website to remove account managment and API handling. These features may be brought back in the future when the network goes live. A few new pages such as the Cemu and FAQ pages were added along with a finished credits list
16 lines
460 B
JavaScript
16 lines
460 B
JavaScript
const router = require('express').Router();
|
|
const utilHelper = require('../helpers/util');
|
|
|
|
router.get('/faq', (request, response) => {
|
|
const locale = utilHelper.getLocale('US', 'en');
|
|
|
|
return response.render('faq', {
|
|
title: 'Pretendo | FAQ',
|
|
description: locale.about.text,
|
|
url: request.protocol + '://' + request.get('host') + request.originalUrl,
|
|
baseurl: request.protocol + '://' + request.get('host'),
|
|
locale
|
|
});
|
|
});
|
|
|
|
module.exports = router; |