Basic tag
Hello {{name}} !!
Loop over a list property
{{#list}}
{{property}} // item.property
or
{{.}} // item
{{/list}}
Show a block if a property is an empty list or falsy
{{^variable}}
variable is a falsy
{{/variable}}
Show a block if a property truthy
{{#variable}}
variable is truthy
{{/variable}}
Imports an other template
{{> header}}
Render unescaped HTML
{{{<span>unescaped</span>}}} or {{&<span>unescaped</span>}}