diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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> |