<% _.each(products, function (product) { %>
<% if (product.image_url) { %>
alt="<%= product.title %>" <% } %> />
<% } %>
<% if (product.brand) { %>
<%= product.brand %>
<% } %> <% if (product.name) { %>
<%= product.name %>
<% } %> <% if (product.discount_label) { %> <%= product.discount_label %> <% } %> <% if (product.special_price) { %>
<%= product.special_price %>
<% } %> <% if (product.price) { %>
<%= product.price %>
<% } %>
<% }) %>