Is it too complex or time-consuming to implement? I could utilize the multi-column layout recently introduced in CSS3. What is your suggestion?
The goal for the template design is as follows:
Element1 Element5
Element2 Element6
Element3 Element7
Element4
as opposed to:
Element1
Element2
Element3
Element4
Element5
Element6
Element7
I typically use
{% for a in b %}{{ a }}{% endfor %}
.
I am curious if there is a method to break the loop and resume from another section within the same template while continuing to load elements from where it left off.