SEO improvements suggested by Mark

This commit is contained in:
Michael Q Larson
2014-11-23 15:08:46 -06:00
parent 842f973c8c
commit d9502856dc
11 changed files with 26 additions and 14 deletions

View File

@@ -4,8 +4,15 @@
*/
exports.learnToCode = function(req, res) {
res.render('learn-to-code');
title: 'Learn to Code'
res.render('learn-to-code', {
title: 'Learn to Code'
});
}
exports.about = function(req, res) {
res.render('about', {
title: 'Who We Are'
});
}
exports.interviewQuestions = function(req, res) {
@@ -19,7 +26,7 @@ exports.interviewQuestions = function(req, res) {
answer: "O(1)"
},
{
question: "Time Complexity of Pushing and Poping on Stack",
question: "Time Complexity of Pushing and Popping on Stack",
answer: "O(1)"
},
{