Fix change links to about

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