Fix linting issue

This commit is contained in:
Berkeley Martinez
2015-11-03 21:51:16 -08:00
parent 9995a73e6d
commit 692f577eb3
7 changed files with 28 additions and 11 deletions

View File

@ -192,7 +192,8 @@ module.exports = function(app) {
function showTestimonials(req, res) {
res.render('resources/stories', {
title: 'Testimonials from Happy Free Code Camp Students who got Software Engineer Jobs',
title: 'Testimonials from Happy Free Code Camp Students ' +
'who got Software Engineer Jobs',
stories: testimonials.slice(0, 72),
moreStories: true
});
@ -200,7 +201,8 @@ module.exports = function(app) {
function showAllTestimonials(req, res) {
res.render('resources/stories', {
title: 'Testimonials from Happy Free Code Camp Students who got Software Engineer Jobs',
title: 'Testimonials from Happy Free Code Camp Students ' +
'who got Software Engineer Jobs',
stories: testimonials,
moreStories: false
});