Continue redesign

This commit is contained in:
Gergely Polonkai
2015-04-22 18:11:35 +02:00
parent eecf7bffec
commit 7a4be1de74
50 changed files with 156 additions and 156 deletions

9
_includes/post-list.html Normal file
View File

@@ -0,0 +1,9 @@
<div class="container-fluid">
{% for post in posts limit: post_limit %}
{% capture counter %}{% cycle 'odd', 'even' %}{% endcapture %}
{% include blog-post.html %}
{% if counter == 'even' %}
<div class="clearfix"></div>
{% endif %}
{% endfor %}
</div>