<?php plogger_get_header(); ?>
<div id="thumbnail-container" class="clearfix">
<?php if (plogger_has_albums()) : ?>
<div id="collections">
<?php while(plogger_has_albums()) : plogger_load_album();
// Find thumbnail width/height
$thumb_info = plogger_get_thumbnail_info();
$thumb_width = $thumb_info['width']; // The width of the image. It is integer data type.
$thumb_height = $thumb_info['height']; // The height of the image. It is an integer data type.
?>
<div class="collection">
<a class="collection-image-link" href="<?php echo plogger_get_album_url(); ?>"><img class="photos" src="<?php echo plogger_get_album_thumb(); ?>" width="<?php echo $thumb_width; ?>" height="<?php echo $thumb_height; ?>" title="<?php echo plogger_get_album_name(); ?>" alt="<?php echo plogger_get_album_name(); ?>" /></a>
<h2><a href="<?php echo plogger_get_album_url(); ?>"><?php echo plogger_get_album_name(); ?></a></h2>
<?php echo plogger_download_checkbox(plogger_get_album_id()); ?>
<span class="meta-header"><?php echo plog_tr('Contains'); ?> <?php echo plogger_album_picture_count() . ' '; echo (plogger_album_picture_count() == 1) ? plog_tr('Image') : plog_tr('Images'); ?></span>
<p class="description"><?php echo plogger_get_album_description(); ?></p>
</div><!-- /collection -->
<?php endwhile; ?>
</div><!-- /collections -->
<?php else : ?>
<div id="no-pictures-msg">
<h2><?php echo plog_tr('No Albums') ?></h2>
<p><?php echo plog_tr('Sorry, but there are no images or albums in this collection yet.') ?></p>
</div><!-- /no-pictures-msg -->
<?php endif; ?>
</div><!-- /thumbnail-container clearfix -->
<?php plogger_get_footer(); ?>