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" >
< h1 > Welcome to my website< / h1 >
< hr >
2016-06-16 18:47:44 +01:00
< p > The place where my knowledge lies, or at least most of it!< / p >
2016-05-15 17:46:00 +01:00
< a href = "#about" class = "btn btn-primary btn-xl page-scroll" > Find Out More< / a >
< / div >
< / div >
< / 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 >
Hi, I'm Jake. I've been working as a full-stack developer for the past year now, and studying computer-science for several years. This is my website, where all my projects, blog posts, and other stuff live. A 1-stop place to find all my content!
< / 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-05-16 22:29:34 +01:00
< i class = "fa fa-4x fa-internet-explorer wow bounceIn text-primary" data-wow-delay = ".5s" > < / i >
2016-05-16 21:46:01 +01:00
< h3 > Client< / h3 >
< p > Creating functional, fast, and mobile-friendly 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" >
{% for article in categories|category_find("blog") %}
< div class = "row" >
< div class = "col-xs-12 text-left" >
2016-07-04 23:14:16 +01:00
< p class = "h3" > < a href = "{{ article.url }}" > {{ article.title }}< / a > < / p >
2016-06-03 22:12:34 +01:00
< h3 > {{ article.title }}< / h3 >
2016-06-13 21:52:59 +01:00
< p > {{ article.summary|striptags|e|limit(30) }}< / 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-05-16 21:46:01 +01:00
< p > There's more content on my site than just my Projects 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 >