index.html.erb 641 B

12345678910111213141516171819202122
  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. remote: true %>
  16. </div>
  17. </div>
  18. <% end %>
  19. <% end %>
  20. <% end %>