<h1>Neil's Whimsical Store Catalogue</h1>

<% for product in @products -%>
  <div class="entry">
    <%= link_to image_tag(product.image_url), {:action => "add_to_cart", :id => product}, :method => "post" %>
    <h3><%= link_to h(product.title), {:action => "add_to_cart", :id => product}, :method => "post" %></h3>
    <%= product.description %>
    <div class="price-line">
      <span class="price"><%= number_to_currency product.price, :unit => "&pound;" %></span>
      <%= button_to "Add to cart", :action => "add_to_cart", :id => product %>
    </div>
  </div>
<% end %>