Listing products

<% @products.each do |product| %> <% end %>
Title Description Image url Price
<%= product.title %> <%= product.description %> <%= product.image_url %> <%= product.price %> <%= 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 %>