site-header

How to compare strings in twig

23 Jul 2021
Category Twig

Twig supports several operators that are similar to the ones in PHP. But often there are simplified versions like

PHP

// Exact match
if ($x === $y) 
? echo true 
: echo false
;

Twig


{% if x is same as y %}