You are here

flickrgallery_albums.tpl.php in FlickrGallery 7.3

File

theme/flickrgallery_albums.tpl.php
View source
<?php

/*
 * Available vars:
 * - $description: Contains the description of the FlickrGallery module you
 *   provided at the settings page.
 * - $albums: An Array that contains the image and titles with links.
 */
?>
<div id='flickrgallery'>
  <div id='flickrgallery-description'><?php

print $description;
?></div>
  <div id='flickrgallery-albums'>
    <?php

foreach ($albums as $key => $album) {
  ?>
      <div class='flickr-wrap'>
        <?php

  print $album['image_link'];
  ?>
        <?php

  print $album['title_link'];
  ?>
        <div class='flickr-total'>
          <?php

  print t('Total') . ": " . $album['total'];
  ?>
        </div>
      </div>
    <?php

}
?>
  </div>
</div>