Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 19, 2014 01:24
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/493856f41af45e04d0da to your computer and use it in GitHub Desktop.
Save devdays/493856f41af45e04d0da to your computer and use it in GitHub Desktop.
Single Page App - Products Template for LoDash
<ul>
<% _.forEach(products, function(product) { %>
<li>
<strong><%- product.name %></strong>
<span>( Cateogry: <span class="value"><%- product.category %></span> )</span>
<span>( Link: <a href='"#/products/<%- product.id %>'>
<%- product.name %> Details</a> )</span>
<div>Description: <%= product.description %></div>
<div>Price: <%- product.price %></div>
</li>
<% }); %>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment