Guest User

Untitled

a guest
May 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <div class="block2">
  2. {% assign product_created_at = product.created_at | date: '%s' %}
  3. {% assign time_ago = 'now' | date: '%s' | minus: product_created_at | divided_by: 86400 %}
  4. {% assign product_new_time = settings.product_new_time | times: 1 %}
  5.  
  6. <div class="block2-img wrap-pic-w of-hidden pos-relative
  7. {% if time_ago < product_new_time %}block2-labelnew{% endif %}
  8. {% if on_sale %} block2-labelsale{% endif %}">
  9. <a href="{{ product.url | within: collection }}">
  10. <img class="" src="{{ product.featured_image.src | img_url: img_size }}" alt="{{ product.featured_image.alt | escape }}">
  11. </a>
  12. </div>
  13. </div>
  14.  
  15. <div class="block2-txt p-t-20">
  16. <a href="{{ product.url | within: collection }}" class="block2-name dis-block s-text3 p-b-5">
  17. {{ product.title }}
  18. </a>
  19. {% if product.compare_at_price > product.price %}
  20. <span class="block2-oldprice m-text7 p-r-5"> {{ product.compare_at_price_max | money }} </span> <span class="block2-newprice m-text8 p-r-5"> {{ product.price | money }} </span>
  21. {% else %}
  22. <span class="block2-price m-text6 p-r-5"> {{ product.price | money }} </span>
  23. {% endif %}
  24. </div>
Add Comment
Please, Sign In to add comment