twig if set code example
Example 1: twig if
{% if users %}
<ul>
{% for user in users %}
<li>{{ user.username|e }}</li>
{% endfor %}
</ul>
{% endif %}
Example 2: twig if
{% if not user.subscribed %}
<p>You are not subscribed to our mailing list.</p>
{% endif %}