condition

if

{% if cond %} hello {% endif %}

if-else

{% if cond %} hello {% else %} world {% endif %}

if-elif-else

{% if cond1 %}
hello
{% elif cond2 %}
world
{% elif cond3 %}
haha
{% else %}
test
{% endif %}

Last updated