Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. % cache ['store', Product.latest] do %>
  2. <% @products.each do |product| %>
  3. <% cache ['entry', product] do %>
  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"><%= number_to_currency(product.price) %></span>
  10. </div>
  11. </div>
  12. <% end %>
  13. <% end %>
  14. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement