Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 18, 2014 23:56
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 devdays/418696e90decdb0ad701 to your computer and use it in GitHub Desktop.
Save devdays/418696e90decdb0ad701 to your computer and use it in GitHub Desktop.
Single Page App - products template
<ul class="products">
{{#products}}
<li id="product{{id}}">
<div><a href="#/product/{{id}}">{{name}}</a> is a {{category}}</div>
<div>Price: ${{price}}</div>
</li>
{{/products}}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment