Advertisement
Vinkonst

Untitled

Sep 23rd, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.27 KB | None | 0 0
  1. {% set columns = 4 %}
  2. {% for name in names %}
  3.     {% if loop.first or loop.index0 is divisibleby(columns) %}
  4.         <ul>
  5.     {% endif %}
  6.  
  7.     <li>{{ name }}</li>
  8.  
  9.     {% if loop.last or loop.index is divisibleby(columns) %}
  10.         </ul>
  11.     {% endif %}
  12. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement