aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--index.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/index.html b/index.html
index e745ab5..fca379a 100644
--- a/index.html
+++ b/index.html
@@ -33,8 +33,7 @@ projects:
<h1>{{ site.settings.author.name }}</h1>
<hr/>
-<div class="row">
-
+{% capture links %}
<div class="col-sm-5 col-md-4 col-lg-3">
<div class="list-group">
@@ -68,7 +67,9 @@ projects:
</div>
</div>
+{% endcapture %}
+{% capture projects %}
{% if page.projects %}
<div class="col-sm-6 col-md-5 col-lg-4">
@@ -93,5 +94,9 @@ projects:
</div>
{% endif %}
+{% endcapture %}
+<div class="row">
+{{ links }}
+{{ projects }}
</div>