Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <a href="{{ product.variants.first.featured_image.src | img_url: 'master' }}" class="commerce-main-image zoom" data-rel="prettyPhoto[product-gallery]" title="{{ product.featured_image.alt | escape }}" itemprop="image">
  2. <img id="varImage" width="500" height="700" src="{{ product.variants.first.featured_image.src | img_url: 'grande' }}" alt="{{ product.variants.first.featured_image.src | escape }}" />
  3. </a>
  4. {% if product.images.size > 1 %}
  5. <div class="thumbnails columns-12">
  6. {% for image in product.images offset: 1%}
  7. <a href="{{ image.src | img_url: 'master' }}" class="zoom first" data-rel="prettyPhoto[product-gallery]" title="{{ image.alt | escape }}">
  8. <img width="100" height="140" src="{{ image.src | img_url: 'compact' }}" alt="{{ image.alt | escape }}" />
  9. </a>
  10. {% endfor %}
  11. </div>
  12. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement