Skip to content

Instantly share code, notes, and snippets.

@ben-rogerson
Created June 14, 2018 05:12
Show Gist options
  • Save ben-rogerson/1560ab98f5e523b0c448d62f0128c0e2 to your computer and use it in GitHub Desktop.
Save ben-rogerson/1560ab98f5e523b0c448d62f0128c0e2 to your computer and use it in GitHub Desktop.
Equal columns in Twig
{% set items = [...] %}
{% set itemsPerColumn = (items|length / 2)|round %}
{% for column in items|batch(itemsPerColumn) %}
<div class="column">
{% for item in column %}
<div class="item">
{{ item }}
</div>
{% endfor %}
</div>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment