Skip to content

Instantly share code, notes, and snippets.

@wouterj
Created April 7, 2013 17:18
Show Gist options
  • Save wouterj/5331389 to your computer and use it in GitHub Desktop.
Save wouterj/5331389 to your computer and use it in GitHub Desktop.
<ul>
{% for item in items %}
<li>{{ item }}</li>
{% endfor %}
</ul>
RESULT
<ul>
<li>...</li>
...
</ul>
----------
EXAMPLE 1
<ul>
{% for item in items -%}
<li>{{ item }}</li>
{%- endfor %}
</ul>
RESULT
<ul>
<li>...</li>
...
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment