1// twig if else
2{% if process_1 %}
3 {{ process_1 }}
4{% elseif process_2 %}
5 Only {{ process_2 }} left!
6{% else %}
7 Sold-out!
8{% endif %}
1{% if online == false %}
2 <p>Our website is in maintenance mode. Please, come back later.</p>
3{% endif %}
1{% if online == false %}
2 <p>Our website is in maintenance mode. Please, come back later.</p>
3{% endif %}
4
1//For Multiple Condition
2{%if ( fields | length > 0 ) or ( trans_fields | length > 0 ) %}
3
4//If statement
5{% if product.stock > 10 %}
6 Available
7{% elseif product.stock > 0 %}
8 Only {{ product.stock }} left!
9{% else %}
10 Sold-out!
11{% endif %}