Equalities, Inequalities and Logical Expressions
Templates contain functions to test values, perform conditional statement execution, or control the template flow.
These statements include *if and *loopif. The tests in these commands use the following syntax to determine if the statement is true or false.
| Equal to: | == | 
| Not equal to: | != | 
| Less than: | < | 
| Greater than: | > | 
| Less than or equal to: | <= | 
| Greater than or equal to: | >= | 
| Logical and: | && | 
| Logical or: | || |