summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/template/templates/lstrip_blocks.j2
blob: d572da6793bf66f1131330dc1e85c7ec87e3cc6a (plain)
1
2
3
4
5
6
7
8
{% set hello_world="hello world" %}
{% for i in [1, 2, 3] %}
    {% if loop.first %}
{{hello_world}}
    {% else %}
{{hello_world}}
    {% endif %}
{% endfor %}