/* Twig Ternary */
{{ var == 'value1' ? 'true output' : 'false output' }}
/* Twig If */
{% if var == 'value1' %}
{{ do_this }}
{% elseif var == 'value2' %}
{{ do_this }}
{% else %}
{{ do_this }}
{% endif %}
/* Twig Set Var */
{% set var = 'value' %}
{{ foo ?: 'no' }} is the same as {{ foo ? foo : 'no' }}
{{ foo ? 'yes' }} is the same as {{ foo ? 'yes' : '' }}
{{ page.content_right ? 'has-content-right' : 'no-content-right' }}
{{ page.content_right ? 'has-content-right' }}
{{ page.content_right ?: 'no-content-right' }}