1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 18:32:50 +00:00

changed font - starting on resume

This commit is contained in:
2016-01-08 00:03:19 -06:00
parent eb1fae7535
commit 41dd7122de
5 changed files with 29 additions and 6 deletions

View File

@@ -21,7 +21,6 @@ router.get('/vpn', function(req, res, next){
res.redirect('https://mitchellg.me:943');
});
/* GET home page. */
router.get('/', function(req, res, next) {
@@ -209,7 +208,10 @@ function getPosts(callback){
post.date = window.$("#date").text();
post.intro = window.$("#intro").text();
posts.push(post);
if(post.intro != "" && post.date != "" && post.title != ""){
posts.push(post);
};
outerCB(null);
});