From 41dd7122dee3a6c7f42dc2140bc90929642a178e Mon Sep 17 00:00:00 2001 From: mgerb42 Date: Fri, 8 Jan 2016 00:03:19 -0600 Subject: [PATCH] changed font - starting on resume --- public/css/style.css | 2 +- public/html/navbar.html | 4 ++-- public/posts/resume.html | 21 +++++++++++++++++++++ routes/index.js | 6 ++++-- views/layout.ejs | 2 +- 5 files changed, 29 insertions(+), 6 deletions(-) create mode 100644 public/posts/resume.html diff --git a/public/css/style.css b/public/css/style.css index d45e85a..8567345 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -3,7 +3,7 @@ html { } body { - font-family: 'Arvo', serif; + font-family: 'Raleway', sans-serif; } a { diff --git a/public/html/navbar.html b/public/html/navbar.html index 697ac0c..809ad0b 100644 --- a/public/html/navbar.html +++ b/public/html/navbar.html @@ -17,10 +17,10 @@ Home
  • - My Experience + Sensors
  • - Sensors + Résumé
  • Contact diff --git a/public/posts/resume.html b/public/posts/resume.html new file mode 100644 index 0000000..d42c88c --- /dev/null +++ b/public/posts/resume.html @@ -0,0 +1,21 @@ +

    Mitchell Gerber

    + +

    Hello, my name is Mitchell and I am persuing a career in software development. I have a passion for learning new technologies and I'm always striving to find a way to make something better. +

    + +

    I always find enjoyment in building things, whether it's computers, drones, or software. I started programming upon enrolling in college and I have been hooked ever since. Programming has become a hobby of mine and it has opened up many oppurtunities. +

    + +

    My primary strengths include back end development and working with MySQL databases. I also have experience with NoSQL databases and front end development. I helped develop a web application for Digi International that is used to debug embedded devices for testing purposes. I worked with Java/JSP, which ran on a Jetty web server and used an H2 embedded database. +

    + +

    Software development doesn't stop when I leave work. I often lose track of time working on personal projects in my free time. I'm currently developing this personal website to learn Node.js and familiarize myself with newer web development technologies. +

    + +

    Technical Skills

    + +

    Personal Background

    + +

    Work Experience

    + +

    Contacts

    \ No newline at end of file diff --git a/routes/index.js b/routes/index.js index 9bfe60f..4346fb6 100644 --- a/routes/index.js +++ b/routes/index.js @@ -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); }); diff --git a/views/layout.ejs b/views/layout.ejs index 823d41f..8cb6c6a 100644 --- a/views/layout.ejs +++ b/views/layout.ejs @@ -7,6 +7,6 @@ - +