End chapter 8
[depot.git] / app / views / store / index.html.erb
1 <h1>Neil's Whimsical Store Catalogue</h1>
2
3 <% for product in @products -%>
4 <div class="entry">
5 <%= image_tag(product.image_url) %>
6 <h3><%=h product.title %></h3>
7 <%= product.description %>
8 <div class="price-line">
9 <span class="price"><%= number_to_currency product.price, :unit => "&pound;" %></span>
10 <%= button_to "Add to cart" %>
11 </div>
12 </div>
13 <% end %>