選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

15 行
351 B

  1. <p id="notice"><%= notice %></p>
  2. <h1>Your Pragmatic Catalog</h1>
  3. <% @products.each do |product| %>
  4. <div class="entry">
  5. <%= image_tag(product.image_url) %>
  6. <h3><%= product.title %></h3>
  7. <%= sanitize(product.description) %>
  8. <div class="price_line">
  9. <span class="price"><%= product.price %></span>
  10. </div>
  11. </div>
  12. <% end %>