community.general/test/integration/targets/template/templates/lstrip_blocks.j2

9 lines
161 B
Django/Jinja

{% set hello_world="hello world" %}
{% for i in [1, 2, 3] %}
{% if loop.first %}
{{hello_world}}
{% else %}
{{hello_world}}
{% endif %}
{% endfor %}