#if cond1 { block1 } [ #elseif cond { block2 } ][ #else { block3 } ]
Executes block1 if cond1 is true. The #if can be followed by any number of similar #elseif clauses, and an optional #else part.
block1
cond1
#if
#elseif
#else