Fix change links to about

This commit is contained in:
Berkeley Martinez
2016-01-10 17:57:09 -08:00
parent 17eaed7f99
commit 7f60af8a3f
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ module.exports = function(app) {
router.get('/labs', showLabs); router.get('/labs', showLabs);
router.get('/stories', showTestimonials); router.get('/stories', showTestimonials);
router.get('/all-stories', showAllTestimonials); router.get('/all-stories', showAllTestimonials);
router.get('/about', showLinks); router.get('/about', showAbout);
router.get('/terms-and-privacy', termsAndPrivacy); router.get('/terms-and-privacy', termsAndPrivacy);
router.get( router.get(
'/the-fastest-web-page-on-the-internet', '/the-fastest-web-page-on-the-internet',
@ -196,8 +196,8 @@ module.exports = function(app) {
}); });
} }
function showLinks(req, res) { function showAbout(req, res) {
res.render('resources/links', { res.render('resources/about', {
title: 'About our Open Source Community, our social media presence, ' + title: 'About our Open Source Community, our social media presence, ' +
'and how to contact us' 'and how to contact us'
}); });