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 >
2017-01-31 21:04:51 +00:00
< p > Full-stack Developer, Security Enthusiast, < 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" >
2017-01-17 19:45:16 +00:00
< div class = "container text-center" >
< h2 class = "section-heading" > About< / h2 >
< hr class = "light" >
< p >
2017-01-31 21:04:51 +00:00
I'm Jake. A software engineer with a passion for security and privacy. This is my website, a home for my projects, blog posts, and anything else for that matter.
2017-01-17 19:45:16 +00:00
< / p >
2017-02-09 21:52:25 +00:00
< a href = "/contact/" class = "btn btn-primary-dark btn-xl" > Contact< / a >
2016-05-15 17:46:00 +01:00
< / div >
< / section >
2016-05-14 12:34:15 +01:00
2016-05-15 17:46:00 +01:00
< section id = "skills" >
2017-01-17 19:45:16 +00:00
< div class = "container text-center" >
< h2 class = "section-heading" > Skills< / h2 >
< hr class = "primary" >
2016-05-15 17:46:00 +01:00
< div class = "row" >
2017-01-17 19:45:16 +00:00
< div class = "col-lg-3 col-md-6" >
2016-05-15 17:46:00 +01:00
< 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 >
2017-01-31 21:04:51 +00:00
< h3 > Servers< / h3 >
2016-05-15 17:46:00 +01:00
< / div >
2016-05-14 12:34:15 +01:00
< / div >
2017-01-17 19:45:16 +00:00
< div class = "col-lg-3 col-md-6" >
2016-05-15 17:46:00 +01:00
< div class = "service-box" >
2017-01-31 21:04:51 +00:00
< i class = "fa fa-4x fa-lock wow bounceIn text-primary" data-wow-delay = ".5s" > < / i >
< h3 > Security< / h3 >
2016-05-15 17:46:00 +01:00
< / div >
< / div >
2017-01-17 19:45:16 +00:00
< div class = "col-lg-3 col-md-6" >
2016-05-15 17:46:00 +01:00
< 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 >
2016-05-15 17:46:00 +01:00
< / div >
< / div >
2017-01-17 19:45:16 +00:00
< div class = "col-lg-3 col-md-6" >
2016-05-15 17:46:00 +01:00
< 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 >
< / 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" >
2017-01-17 19:45:16 +00:00
< div class = "container text-center" >
< h2 class = "section-heading" > Blog< / h2 >
2017-01-18 21:29:22 +00:00
< hr class = "light" >
2017-01-17 19:45:16 +00:00
{% for article in categories|category_find("blog")|limit(4) %}
< div class = "row" >
< div class = "col-xs-12" >
< p class = "h3" > < a href = "{{ article.url }}" > {{ article.title }}< / a > < / p >
< p > {{ article.summary|striptags|e }}< / p >
2016-06-03 22:12:34 +01:00
< / div >
2016-05-30 17:38:58 +01:00
< / div >
2017-01-18 21:29:22 +00:00
< hr class = "light" >
2017-01-17 19:45:16 +00:00
{% endfor %}
< a href = "/blog/" class = "btn btn-primary-dark btn-xl" > View all posts< / a >
2016-05-30 17:38:58 +01:00
< / div >
< / section >
2016-05-21 22:40:53 +01:00
< section id = "more" >
2017-01-17 19:45:16 +00:00
< div class = "container text-center" >
< h2 class = "section-heading" > More Content< / h2 >
< hr class = "primary" >
2017-01-23 09:20:01 +00:00
{% for category, articles in categories %}
{% if category.name not in ['blog', 'projects'] %}
< a class = "btn btn-primary btn-xl margin" href = "{{ category.url }}" >
2017-01-23 14:12:12 +00:00
{{ category.name }}
2017-01-23 09:20:01 +00:00
< / a >
{% endif %}
{% endfor %}
2016-05-15 17:46:00 +01:00
< / div >
< / section >
2016-05-14 12:34:15 +01:00
< / body >