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 users %}
2 <ul>
3 {% for user in users %}
4 <li>{{ user.username|e }}</li>
5 {% endfor %}
6 </ul>
7{% endif %}
1{% if users %}
2 <ul>
3 {% for user in users %}
4 <li>{{ user.username|e }}</li>
5 {% endfor %}
6 </ul>
7{% endif %}
8
1{% if online == false %}
2 <p>Our website is in maintenance mode. Please, come back later.</p>
3{% endif %}
4
1{% if not user.subscribed %}
2 <p>You are not subscribed to our mailing list.</p>
3{% endif %}