1
Fork 0

Cleanup pointless rows

This commit is contained in:
Jake Howard 2017-01-17 19:45:16 +00:00
parent d856c029f4
commit fd8e512fd5

View file

@ -19,53 +19,43 @@
</header>
<section class="bg-primary" id="about">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">About</h2>
<hr class="light">
<p>
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!
</p>
<a href="/about/" class="btn btn-primary-dark btn-xl">More Info</a>
</div>
</div>
<div class="container text-center">
<h2 class="section-heading">About</h2>
<hr class="light">
<p>
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!
</p>
<a href="/about/" class="btn btn-primary-dark btn-xl">More Info</a>
</div>
</section>
<section id="skills">
<div class="container">
<div class="container text-center">
<h2 class="section-heading">Skills</h2>
<hr class="primary">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Skills</h2>
<hr class="primary">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 text-center">
<div class="col-lg-3 col-md-6">
<div class="service-box">
<i class="fa fa-4x fa-server wow bounceIn text-primary" data-wow-delay=".3s"></i>
<h3>Server</h3>
<p>Designing and building high-performance server applications and environments</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="col-lg-3 col-md-6">
<div class="service-box">
<i class="fa fa-4x fa-firefox wow bounceIn text-primary" data-wow-delay=".5s"></i>
<h3>Client</h3>
<p>Creating functional, fast, and responsive websites</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="col-lg-3 col-md-6">
<div class="service-box">
<i class="fa fa-4x fa-mobile wow bounceIn text-primary" data-wow-delay=".7s"></i>
<h3>Mobile</h3>
<p>Building lightweight, cross-platform mobile applications</p>
</div>
</div>
<div class="col-lg-3 col-md-6 text-center">
<div class="col-lg-3 col-md-6">
<div class="service-box">
<i class="fa fa-4x fa-usb wow bounceIn text-primary" data-wow-delay=".9s"></i>
<h3>Hardware</h3>
@ -106,52 +96,35 @@
</section>
<section class="bg-primary" id="blog">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 text-center">
<h2 class="section-heading">Blog</h2>
<hr class="light">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
{% 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>
</div>
</div>
<hr class="light">
{% endfor %}
</div>
<div class="container text-center">
<h2 class="section-heading">Blog</h2>
{% for article in categories|category_find("blog")|limit(4) %}
<hr class="light">
<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>
</div>
<a href="/blog/" class="btn btn-primary-dark btn-xl">View all posts</a>
</div>
</div>
{% endfor %}
<a href="/blog/" class="btn btn-primary-dark btn-xl">View all posts</a>
</div>
</section>
<section id="more">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">More Content</h2>
<hr class="primary">
<p>There's more than just my project and blog!</p>
</div>
</div>
<div class="row">
<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>
</div>
</div>
<div class="container text-center">
<h2 class="section-heading">More Content</h2>
<hr class="primary">
<p>There's more than just my project and blog!</p>
<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>
</div>
</section>
</body>