index.html.erb 377 B

12345678910111213141516
  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"><%= product.price %></span>
  12. </div>
  13. </div>
  14. <% end %>