Advertisement
Boquete

Untitled

Jan 6th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. <div id="carousel_product_{{ product.id }}" class="product-carousel carousel fade" data-ride="carousel" data-interval="false">
  2. <div class="carousel-inner">
  3. {% for product_image in images %}
  4. <div class="item{% if product_image == primary_image %} active{% endif %}">
  5. {% set product_image_cropped = product_image|thumbnail(size=(700, 700)) %}
  6. {% if loop|count > 1 %}
  7. <a data-imagelightbox="image-multiple" href="{{ product_image.url }}" rel="gallery" class="thumbnail">
  8. <div class="image" style="background-image:url('{{ product_image_cropped }}')" data-title="{% if product_image.title %}{{ product_image.title }}{% endif %}" data-description="{% if product_image.description %}{{ product_image.description }}{% endif %}"></div>
  9. </a>
  10. {% else %}
  11. <a data-imagelightbox="image" href="{{ product_image.url }}" rel="gallery" class="thumbnail">
  12. <div class="image" style="background-image:url('{{ product_image_cropped }}')" data-title="{% if product_image.title %}{{ product_image.title }}{% endif %}" data-description="{% if product_image.description %}{{ product_image.description }}{% endif %}"></div>
  13. </a>
  14. {% endif %}
  15. </div>
  16. {% else %}
  17. <div class="item active">
  18. <div class="thumbnail" rel="gallery1">
  19. <img class="img-responsive no-image" alt="{{ product.name }}" src="{{ STATIC_URL }}default_dholec/img/no_image.png">
  20. </div>
  21. </div>
  22. {% endfor %}
  23. </div>
  24. </div>
  25. <div class="wrap-thumbnails">
  26. <div class="carousel-thumbnails owl-carousel">
  27. {% for product_image in images %}
  28. {% if loop|count > 1 %}
  29. {% set product_image_thumbnail = product_image|thumbnail(size=(300, 300)) %}
  30. <a href="#carousel_product_{{ product.id }}" class="thumbnail" data-slide-to="{{ loop.index0 }}">
  31. <div class="image" style="background-image:url('{{ product_image_thumbnail }}')"></div>
  32. </a>
  33. {% endif %}
  34. {% endfor %}
  35. </div>
  36. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement