您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

19 行
483 B

  1. <p id="notice"><%= notice %></p>
  2. <h1>Your Pragmatic Catalog</h1>
  3. <% cache @products do %>
  4. <% @products.each do |product| %>
  5. <% cache product do %>
  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. </div>
  13. </div>
  14. <% end %>
  15. <% end %>
  16. <% end %>