flickrgallery_photoset.tpl.php in FlickrGallery 7.3
1 theme call to flickrgallery_photoset.tpl.php
- flickrgallery_set in includes/
flickrgallery.pages.inc
File
theme/flickrgallery_photoset.tpl.phpView source
<?php
/*
* Available vars:
* $set: Contains the thumbnail images (Output from flickrgallery_photo.tpl.php).
* $meta: More information about the set.
*/
?>
<div id="flickrgallery">
<?php
foreach ($photoset as $key => $set) {
?>
<div class='flickr-wrap'>
<?php
print $set;
?>
</div>
<?php
}
?>
<div class='flickrgallery-return'><?php
print l(t('Back to sets'), variable_get('flickrgallery_path', 'flickr'));
?></div>
</div>