Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@iign
Last active May 30, 2017 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iign/69ac775cfe9016f738d94fc9e9780f7c to your computer and use it in GitHub Desktop.
Save iign/69ac775cfe9016f738d94fc9e9780f7c to your computer and use it in GitHub Desktop.
{% set items = ['a', 'b', 'c', 'd', 'e', 'f', 'g'] %}
{% for row in items|batch(3, 'No item') %}
<div class="row">
{% for column in row %}
<div class="element col-xs-4">
{{ column }}
</div>
{% endfor %}
</div>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment