You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
483 B

  1. <p id="notice"><%= notice %></p>
  2. <h1>Your Pragmatic Catalog</h1>
  3. <% cache @products do %>
  4. <% @products.each do |product| %>
  5. <% cache product do %>
  6. <div class="entry">
  7. <%= image_tag(product.image_url) %>
  8. <h3><%= product.title %></h3>
  9. <%= sanitize(product.description) %>
  10. <div class="price_line">
  11. <span class="price"><%= number_to_currency(product.price) %></span>
  12. </div>
  13. </div>
  14. <% end %>
  15. <% end %>
  16. <% end %>