{{if(options.someval === "someothervalue")}}
Display this!
{{#else}}
They don't equal
{{/if}}
{{each(options.someArray)}}
The current array item is {{@this}}, the current index is {{@index}}
{{/each}}
{{foreach(options.someObject)}}
The current object key is {{@key}}, and the value is {{@this}}
{{/foreach}}
{{log("The value of options.num is: " + options.num)/}}