Control Flow Keywords
| Keyword | Syntax | Description |
| ------- | ------ | ----------------- | --- | -------------------- |
| if | { | #if condition | } | Conditional block |
| else | { | #else | } | Alternative block |
| each | { | #each collection | } | Loop over collection |
| raw | { | {raw} | } | Escape delimiters |
| unless | { | #unless condition | } | Negative conditional |
| with | { | #with object | } | Context switch |
Operators
| Operator | Syntax | Description |
| -------- | ------ | ----------------------------- | --- | -------------- |
| as | { | #each items as item | } | Alias in loops |
| in | { | #each item in items | } | Loop syntax |
| and | { | #if condition1 and condition2 | } | Logical AND |
| or | { | #if condition1 or condition2 | } | Logical OR |
| not | { | #if not condition | } | Logical NOT |
| is | { | #if value is 'test' | } | Equality check |