Docs say that if syntax can be nested.
I can write things like this:
<$let foo="1" bar="2">
<%if [<foo>match[1]] %>
<%if [<bar>match[2]] %>
match foo and bar
<%endif%>
<%endif%>
</$let>
But is it possible to write the condition as condition1 AND condition2
or something like that? Because for multiple conditions, one ends with a ladder of code with big cyclomatic complexity.