Add stats to about page

This commit is contained in:
Berkeley Martinez
2016-01-15 00:10:13 -08:00
parent a6c4ed77a5
commit 918ea56e33
4 changed files with 57 additions and 8 deletions

View File

@@ -35,7 +35,6 @@ module.exports = function(app) {
router.get('/labs', showLabs);
router.get('/stories', showTestimonials);
router.get('/all-stories', showAllTestimonials);
router.get('/about', showAbout);
router.get('/terms', terms);
router.get('/privacy', privacy);
router.get('/code-of-conduct', codeOfConduct);
@@ -198,13 +197,6 @@ module.exports = function(app) {
});
}
function showAbout(req, res) {
res.render('resources/about', {
title: 'About our Open Source Community, our social media presence, ' +
'and how to contact us'
});
}
function terms(req, res) {
res.render('resources/terms-of-service', {
title: 'Terms of Service'