2016-05-14 12:34:15 +01:00
< head >
2016-05-14 14:26:44 +01:00
< meta name = "url" content = "" / >
< meta name = "save_as" content = "index.html" / >
< meta name = "title" content = "Homepage" / >
2016-05-20 19:44:48 +01:00
< meta name = "template" content = "page-home" >
2016-05-14 12:34:15 +01:00
< / head >
2016-05-14 14:26:44 +01:00
< body >
2016-05-20 19:44:48 +01:00
< header class = "bg-primary" >
2016-05-15 17:46:00 +01:00
< div class = "header-content" >
< div class = "header-content-inner" >
2016-09-08 22:14:22 +01:00
< h1 > {{ AUTHOR }}< / h1 >
2016-05-15 17:46:00 +01:00
< hr >
2016-09-14 21:10:40 +01:00
< p > Full-stack Developer, Hardware tinkerer, < i > Hacker< / i > of all the things< / p >
2016-05-15 17:46:00 +01:00
< / div >
< / div >
2016-08-25 21:53:33 +01:00
< a href = "#about" class = "page-scroll" >
< i class = "fa fa-chevron-down animated pulse infinite" aria-hidden = "true" > < / i >
< / a >
2016-05-15 17:46:00 +01:00
< / header >
< section class = "bg-primary" id = "about" >
< div class = "container" >
< div class = "row" >
< div class = "col-lg-8 col-lg-offset-2 text-center" >
2016-05-16 21:46:01 +01:00
< h2 class = "section-heading" > About< / h2 >
2016-05-15 17:46:00 +01:00
< hr class = "light" >
2016-06-18 12:30:06 +01:00
< p >
2016-09-08 18:37:14 +01:00
Hi, I'm Jake. I've been working as a full-stack developer for just over a year. This is my website, where all my projects, blog posts, and other stuff live. Some of it useful, some not so much!
2016-06-18 12:30:06 +01:00
< / p >
2016-05-22 18:48:53 +01:00
< a href = "/about/" class = "btn btn-primary-dark btn-xl" > More Info< / a >
2016-05-14 12:34:15 +01:00
< / div >
2016-05-15 17:46:00 +01:00
< / div >
< / div >
< / section >
2016-05-14 12:34:15 +01:00
2016-05-15 17:46:00 +01:00
< section id = "skills" >
< div class = "container" >
< div class = "row" >
< div class = "col-lg-12 text-center" >
2016-05-16 21:46:01 +01:00
< h2 class = "section-heading" > Skills< / h2 >
2016-05-15 17:46:00 +01:00
< hr class = "primary" >
< / div >
< / div >
< / div >
< div class = "container" >
< div class = "row" >
< div class = "col-lg-3 col-md-6 text-center" >
< div class = "service-box" >
2016-05-16 22:29:34 +01:00
< i class = "fa fa-4x fa-server wow bounceIn text-primary" data-wow-delay = ".3s" > < / i >
2016-05-16 21:46:01 +01:00
< h3 > Server< / h3 >
< p > Designing and building high-performance server applications and environments< / p >
2016-05-15 17:46:00 +01:00
< / div >
2016-05-14 12:34:15 +01:00
< / div >
2016-05-15 17:46:00 +01:00
< div class = "col-lg-3 col-md-6 text-center" >
< div class = "service-box" >
2016-09-08 18:37:14 +01:00
< i class = "fa fa-4x fa-firefox wow bounceIn text-primary" data-wow-delay = ".5s" > < / i >
2016-05-16 21:46:01 +01:00
< h3 > Client< / h3 >
2016-09-08 18:37:14 +01:00
< p > Creating functional, fast, and responsive websites< / p >
2016-05-15 17:46:00 +01:00
< / div >
< / div >
< div class = "col-lg-3 col-md-6 text-center" >
< div class = "service-box" >
2016-05-16 22:29:34 +01:00
< i class = "fa fa-4x fa-mobile wow bounceIn text-primary" data-wow-delay = ".7s" > < / i >
2016-05-16 21:46:01 +01:00
< h3 > Mobile< / h3 >
< p > Building lightweight, cross-platform mobile applications< / p >
2016-05-15 17:46:00 +01:00
< / div >
< / div >
< div class = "col-lg-3 col-md-6 text-center" >
< div class = "service-box" >
2016-05-16 22:29:34 +01:00
< i class = "fa fa-4x fa-usb wow bounceIn text-primary" data-wow-delay = ".9s" > < / i >
2016-05-16 21:46:01 +01:00
< h3 > Hardware< / h3 >
< p > Constructing workflow-specific Desktops, Servers and Notebooks< / p >
< / div >
< / div >
2016-05-15 17:46:00 +01:00
< / div >
< / div >
< / section >
2016-05-14 12:34:15 +01:00
2016-06-03 22:12:34 +01:00
< section id = "projects" >
2016-05-15 17:46:00 +01:00
< div class = "container-fluid" >
< div class = "row no-gutter" >
2016-05-29 23:23:55 +01:00
{% for project in INDEX_PROJECTS %}
< div class = "col-lg-4 col-sm-6" >
< a href = "{{ project.url }}" class = "portfolio-box image" data-image = "{{ project.image }}" >
< div class = "portfolio-box-caption" >
< div class = "portfolio-box-caption-content" >
< div class = "project-name" >
< h2 >
{{ project.name }}
< / h2 >
< / div >
2016-05-14 12:34:15 +01:00
< / div >
2016-05-15 17:46:00 +01:00
< / div >
2016-05-29 23:23:55 +01:00
< / a >
< / div >
{% endfor %}
2016-05-15 17:46:00 +01:00
< / div >
2016-05-29 17:29:45 +01:00
< div class = "row" >
< div class = "col-xs-12 text-center" >
2016-05-30 17:38:58 +01:00
< a href = "/projects/" class = "btn btn-primary btn-xl margin" >
2016-05-29 17:29:45 +01:00
View all projects
< / a >
< / div >
< / div >
2016-05-15 17:46:00 +01:00
< / div >
< / section >
2016-05-14 12:34:15 +01:00
2016-05-30 17:38:58 +01:00
< section class = "bg-primary" id = "blog" >
< div class = "container" >
< div class = "row" >
2016-06-03 22:12:34 +01:00
< div class = "col-lg-10 col-lg-offset-1 text-center" >
2016-05-30 17:38:58 +01:00
< h2 class = "section-heading" > Blog< / h2 >
< hr class = "light" >
2016-06-03 22:12:34 +01:00
< div class = "row" >
< div class = "col-sm-10 col-sm-offset-1" >
2016-07-04 23:17:15 +01:00
{% for article in categories|category_find("blog")|limit(4) %}
2016-06-03 22:12:34 +01:00
< div class = "row" >
2016-07-19 22:16:21 +01:00
< div class = "col-xs-12" >
2016-07-04 23:14:16 +01:00
< p class = "h3" > < a href = "{{ article.url }}" > {{ article.title }}< / a > < / p >
2016-07-04 23:17:15 +01:00
< p > {{ article.summary|striptags|e }}< / p >
2016-06-03 22:12:34 +01:00
< / div >
< / div >
< hr class = "light" >
{% endfor %}
< / div >
< / div >
2016-05-30 17:38:58 +01:00
< a href = "/blog/" class = "btn btn-primary-dark btn-xl" > View all posts< / a >
< / div >
< / div >
< / div >
< / section >
2016-05-21 22:40:53 +01:00
< section id = "more" >
2016-05-15 17:46:00 +01:00
< div class = "container" >
< div class = "row" >
< div class = "col-lg-8 col-lg-offset-2 text-center" >
2016-05-16 21:46:01 +01:00
< h2 class = "section-heading" > More Content< / h2 >
2016-05-15 17:46:00 +01:00
< hr class = "primary" >
2016-09-08 18:37:14 +01:00
< p > There's more than just my project and blog!< / p >
2016-05-14 12:34:15 +01:00
< / div >
2016-05-21 22:40:53 +01:00
< / div >
< div class = "row" >
2016-05-30 17:38:58 +01:00
< div class = "col-xs-12 text-center" >
< a class = "btn btn-primary btn-xl margin" href = "/college/" >
College
< / a >
< a class = "btn btn-primary btn-xl margin" href = "/setup/" >
Setup
< / a >
< a class = "btn btn-primary btn-xl margin" href = "/work/" >
Work
< / a >
2016-05-14 12:34:15 +01:00
< / div >
2016-05-15 17:46:00 +01:00
< / div >
< / div >
< / section >
2016-05-14 12:34:15 +01:00
< / body >