index.html.erb 615 B

123456789101112131415161718192021
  1. <% if notice %>
  2. <p id="notice"><%= notice %></p>
  3. <% end %>
  4. <h1>Your Pragmatic Catalog</h1>
  5. <% cache ['store', Product.latest] do %>
  6. <% @products.each do |product| %>
  7. <% cache ['entry', product] do %>
  8. <div class="entry">
  9. <%= image_tag(product.image_url) %>
  10. <h3><%= product.title %></h3>
  11. <%= sanitize(product.description) %>
  12. <div class="price_line">
  13. <span class="price"><%= number_to_currency(product.price) %></span>
  14. <%= button_to 'Add to Cart', line_items_path(product_id: product) %>
  15. </div>
  16. </div>
  17. <% end %>
  18. <% end %>
  19. <% end %>