Got myself into a seemingly simple dead-end block with twig syntax. I need to test against multiple items:
{% set segment1 = craft.request.firstSegment %}
{% if segment1 == 'one OR two OR three' %}
DO SOMETHING
{% endif %}
What's going wrong with this bit 'one OR two OR three'? brackets?