<dt><%=h product.title %></dt>
<dd><%=h truncate(product.description.gsub(/<.*?>/, '|'),
:length => 80) %></dd>
- <dd><%=number_to_currency product.price, :unit => "£" %>
+ <dd><%=number_to_currency product.price, :unit => "£" %>
<% if product.date_available.past? %>
<dd>Available since <%= product.date_available %></dd>
<% else %>
<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 => "£" %></span>
+ <span class="price"><%= number_to_currency product.price, :unit => "£" %></span>
<%= button_to "Add to cart", :action => "add_to_cart", :id => product %>
</div>
</div>