You are here

amazon_gallery.tpl.php in Amazon Product Advertisement API 7.2

Template file for Amazon_store cart

File

amazon_component/templates/amazon_gallery.tpl.php
View source
<?php

/**
 * @file
 *   Template file for Amazon_store cart
 */
?>
<ul class="product-gallery list-inline">
<?php

if (isset($mediumimage)) {
  ?>
  <?php

  foreach ($mediumimage as $key => $value) {
    ?>
    <li class="gallery-item"><?php

    print $value;
    ?></li>
  <?php

  }
}
?>
</ul>