I can\'t find a way to have TWIG interpret the following conditional statement:
{% if a == true or b == true %} do stuff {% endif %}
Am I missi
check this Twig Reference.
You can do it that simple:
{% if (a or b) %} ... {% endif %}