Listing products

<% for product in @products %> <% end %>
<%= image_tag product.image_url, :class => 'list-image' %>
<%= h product.title %>
<%= h truncate(product.description.gsub(/<.*?>/, ''), :length => 80) %>
<%= link_to 'Show', product %>
<%= link_to 'Edit', edit_product_path(product) %>
<%= link_to 'Destroy', product, :confirm => 'Are you sure?', :method => :delete %>

<%= link_to 'New product', new_product_path %>