flickrgallery_photoset.tpl.php in FlickrGallery 7.2
Same filename and directory in other branches
1 theme call to flickrgallery_photoset.tpl.php
File
flickrgallery_photoset.tpl.phpView source
<?php
/*
* Available vars:
* $set: containing 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>