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.
|
- <p id="notice"><%= notice %></p>
-
- <h1>Your Pragmatic Catalog</h1>
-
- <% cache @products do %>
- <% @products.each do |product| %>
- <% cache product do %>
- <div class="entry">
- <%= image_tag(product.image_url) %>
- <h3><%= product.title %></h3>
- <%= sanitize(product.description) %>
- <div class="price_line">
- <span class="price"><%= number_to_currency(product.price) %></span>
- <%= button_to 'Add To Cart', line_items_path(product_id: product) %>
- </div>
- </div>
- <% end %>
- <% end %>
- <% end %>
|