Skip to content

Instantly share code, notes, and snippets.

@AnkurVyas-BTC
Last active May 23, 2017 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AnkurVyas-BTC/5ecf5b97d5452937dfdc550af67a043b to your computer and use it in GitHub Desktop.
Save AnkurVyas-BTC/5ecf5b97d5452937dfdc550af67a043b to your computer and use it in GitHub Desktop.
Handlebars helpers builtin as well as custom
{{#books}}
{{#if price}}
<tr>
<td>{{name}}</td>
<td>{{price}}</td>
<td>{{formatName author}}</td>
<td>
{{> getButton className="edit-book btn btn-warning" text="Edit"}}
{{> getButton className="delete-book btn btn-danger" text="Delete"}}
</td>
</tr>
{{/if}}
{{/books}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment