You are here

imagezoom_gallery.tpl.php in Image Zoom 7.2

Template for an Image Zoom gallery.

Available variables:

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

File

modules/imagezoom_gallery/theme/imagezoom_gallery.tpl.php
View source
<?php

/**
 * @file
 * Template for an Image Zoom gallery.
 *
 * Available variables:
 * - $image: The display image.
 * - $thumbs: An array of thumbnail images.
 */
?>

<?php

print $image;
?>

<div id="imagezoom-thumb-wrapper">
  <?php

foreach ($thumbs as $thumb) {
  ?>
    <?php

  print $thumb;
  ?>
  <?php

}
?>
</div>