Advertisement
Guest User

Untitled

a guest
Dec 29th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. ///! List of columned items
  2. div[data-trigger="infinite-scroll"]
  3. #columns.clearfix[data-columns]
  4. - items_feed.each do |item|
  5. .product-item.panel.panel-primary.infinite-scroll-item.invisible[data-product-item data-id="#{item.uuid}"]
  6. .panel-body.product-image-container
  7. img.img-responsive.product-image src="#{tartarus_product_thumb(item)}"
  8. .overlay
  9. == show_product_wish_link item, 'Wish'
  10. == show_product_buy_link item, 'Buy'
  11. .panel-footer.product-info-container.clearfix
  12. a.similar href="#" Search similar item
  13. strong = item.brand.name
  14. .row
  15. .col-xs-8.product-name[data-trigger="ellipsis"]
  16. == product_more_info_link(item, item.name)
  17. .col-xs-4
  18. .prices.clearfix
  19. span.special
  20. | #{item.price.to_i} #{item.currency}
  21. a.share.pull-right href="#"
  22. i.fa.fa-share
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement