templates/partials/multiImageBlock.html.twig line 1

Open in your IDE?
  1. {% block multiImageBlock %}
  2. {% for block in content.images %}
  3. {% endfor %}
  4. <div class="row content-image" style="margin-bottom: 5%">
  5. {% for image in content.images %}
  6. {% if loop.index is odd %}
  7. <div class="col-lg-6">
  8. <img src="{{ image.url }}" class="img-fluid" alt="">
  9. </div>
  10. {% else %}
  11. <div class="col-lg-6 pt-4 pt-lg-0">
  12. <img src="{{ image.url }}" class="img-fluid" alt="">
  13. </div>
  14. {% endif %}
  15. {% endfor %}
  16. </div>
  17. {% endblock %}