You are here

imagezoom-gallery.html.twig in Image Zoom 8.3

Template for an Image Zoom gallery.

Available variables:

  • image: The display image.
  • thumbs: An array of thumbnail images.

File

templates/imagezoom-gallery.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Template for an Image Zoom gallery.
  5. *
  6. * Available variables:
  7. * - image: The display image.
  8. * - thumbs: An array of thumbnail images.
  9. */
  10. #}
  11. {{ image }}
  12. <div id="imagezoom-thumb-wrapper">
  13. {% for thumb in thumbs %}
  14. {{ thumb }}
  15. {% endfor %}
  16. </div>