Advertisement
Guest User

For

a guest
Feb 25th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <div class="row">
  2. {% for image in data.media %}
  3. <div data-aos="fade-zoom-in" data-aos-duration="1000" data-aos-delay="{{duration}}"
  4. class="col-12 col-sm-6 col-md-3">
  5. <figure class="gallery__image" itemprop="associatedMedia" itemscope
  6. itemtype="http://schema.org/ImageObject">
  7. <a href="{{image.url}}" itemprop="contentUrl" data-index="{{ loop.index }}" data-width="{{image.width}}"
  8. data-height="{{image.height}}">
  9. <img src="{{image.sizes.gallery_thumb}}" srcset="{{image.sizes.gallery_thumb_2x}} 2x"
  10. itemprop="thumbnail" alt="" />
  11. </a>
  12. </figure>
  13. </div>
  14. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement