|
<div class="row">
|
|
{% for post in site.posts %}
|
|
{% include blog-post-card.html %}
|
|
{% if limit > 0 and forloop.index >= limit %}
|
|
{% break %}
|
|
{% endif %}
|
|
{% assign row = forloop.index | modulo: 3 %}
|
|
{% if row == 0 %}
|
|
</div>
|
|
<div class="row mt-4">
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div> |