Skip to content

Instantly share code, notes, and snippets.

@antonagestam
Last active August 29, 2015 14:17
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 antonagestam/cc1810154108ed394958 to your computer and use it in GitHub Desktop.
Save antonagestam/cc1810154108ed394958 to your computer and use it in GitHub Desktop.
Cycle example
<div class="posts">
<div class="row">
{% for post in posts %}
<div class="post">{{ post }}</div>
{% if not forloop.last %}
{% cycle '' '' '</div><div class="row">' %}
{% endif %}
{% endfor %}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment