<%= products.length %> products found

<% products.forEach(p => { %>
<% if (p.imagepath) { %> <%= p.name %> <% } else { %>
<% } %>
<%= p.name %>
<% if (p.description) { %>

<%= p.description.substring(0, 80) %>...

<% } %>
$<%= parseFloat(p.price).toFixed(2) %>
<% }) %>