unless
If the expression returns false then the code block will be rendered.
Params
condition
Usage
{{#unless condition }}
expression
{{/unless}}
Example
{{ assign 'a' 1 }}
{{ assign 'b' 2 }}
{{#unless (if a '>' b)}}
This will be rendered
{{/unless}}
{{#unless product.available }}
This product is available!
{{else}}
This product is sold out!
{{/unless}}
Was this article helpful to you?