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