index.html.erb 475 B

1234567891011121314151617
  1. <% if notice %>
  2. <p id="notice"><%= notice %></p>
  3. <% end %>
  4. <h1>Your Pragmatic Catalog</h1>
  5. <% @products.each do |product| %>
  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. <%= button_to 'Add to Cart', line_items_path(:product_id => product) %>
  13. </div>
  14. </div>
  15. <% end %>