Handlebars

Getting Started

Handlebars templates look similar to regular HTML and contain Handlebars expressions.

<div class="entry">
  <h1>{{title}}</h1>
  <div class="body">
    {{body}}
  </div>
</div>

Handlebars expressions start with {{ and end with }}.

Reference

http://handlebarsjs.com/