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