if statement twig code example

Example 1: twig if else

// twig if else
{% if process_1 %}
   {{ process_1 }}
{% elseif process_2 %}
   Only {{ process_2 }} left!
{% else %}
   Sold-out!
{% endif %}

Example 2: if else twig

{% if product.stock > 10 %}
   Available
{% elseif product.stock > 0 %}
   Only {{ product.stock }} left!
{% else %}
   Sold-out!
{% endif %}

Example 3: twig if

{% if users %}
    <ul>
        {% for user in users %}
            <li>{{ user.username|e }}</li>
        {% endfor %}
    </ul>
{% endif %}

Example 4: twig if statement

{% if users %}
    <ul>
        {% for user in users %}
            <li>{{ user.username|e }}</li>
        {% endfor %}
    </ul>
{% endif %}

Example 5: twig if statement

{% if temperature > 18 and temperature < 27 %}
    <p>It's a nice day for a walk in the park.</p>
{% endif %}

Tags:

Php Example