We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Just a quick overview of new features/changes, NOT COMPREHENSIVE
Some code from http://colintoh.com/blog/htmlbars
Classes
{{!-- Handlebars Method --}} <div {{bind-attr class=:staticClass dynamicClass isCondition:yes:no}}> .... </div> {{!-- HTMLBar Method --}} <div class="staticClass {{dynamicCLass}}{{ if isCondition 'yes' 'no'}}"> .... </div>
Binds
<div style="color:{{divColor}}"> .... </div>
Inline If helper
{{!-- Current Method --}} {{#if authenticated}}` I'm logged in too! {{/if}} {{!-- HTMLBar Method --}} {{if authenticated "I'm logged"}}