Changeset 557 for trunk/plog-content/themes/air/album.php
- Timestamp:
- 07/14/08 22:15:37 (4 months ago)
- Files:
-
- 1 modified
-
trunk/plog-content/themes/air/album.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plog-content/themes/air/album.php
r552 r557 1 1 <?php plogger_get_header(); ?> 2 2 3 <div id="thumbnail-container" class="clearfix">3 <div id="thumbnail-container" class="clearfix"> 4 4 5 5 <?php if (plogger_has_pictures()) : ?> 6 7 <ul class="slides clearfix"> 8 9 <?php while(plogger_has_pictures()) : ?> 10 11 <?php plogger_load_picture(); 6 <ul class="slides clearfix"> 7 <?php while(plogger_has_pictures()) : ?> 8 <?php plogger_load_picture(); 12 9 // set variables for the album 13 10 $picture_caption = plogger_get_picture_caption(); … … 16 13 $thumb_width = $thumb_info[0]; // The width of the image. It is integer data type. 17 14 $thumb_height = $thumb_info[1]; // The height of the image. It is an integer data type. 18 ?> 15 ?> 16 <li class="thumbnail"> 17 <a href="<?php echo plogger_get_picture_url(); ?>"><img id="thumb-<?php echo plogger_get_picture_id(); ?>" class="photos" src="<?php echo plogger_get_picture_thumb(); ?>" width="<?php echo $thumb_width; ?>px" height="<?php echo $thumb_height; ?>px" title="<?php echo $picture_caption; ?>" alt="<?php echo $picture_caption; ?>" /></a> 18 <div class="checkbox"><?php echo plogger_download_checkbox(plogger_get_picture_id()); ?></div> 19 <p style="width: <?php echo $thumb_width; ?>px;"><?php echo $picture_caption; ?></p> 20 </li><!-- /thumbnail --> 21 <?php endwhile; ?> 22 </ul><!-- /slides --> 23 <?php else : ?> 24 <p id="no-pictures-msg"><?php echo plog_tr('There are no pictures in this album')?>.</p> 25 <?php endif; ?> 19 26 20 <li class="thumbnail"> 21 <a href="<?php echo plogger_get_picture_url(); ?>"> 22 <img id="thumb-<?php echo plogger_get_picture_id(); ?>" class="photos" src="<?php echo plogger_get_picture_thumb(); ?>" width="<?php echo $thumb_width; ?>px" height="<?php echo $thumb_height; ?>px" title="<?php echo $picture_caption; ?>" alt="<?php echo $picture_caption; ?>" /> 23 </a> 24 <div class="checkbox"><?php echo plogger_download_checkbox(plogger_get_picture_id()); ?></div> 25 <p style="width:<?php echo $thumb_width; ?>px;"><?php echo $picture_caption; ?></p> 26 </li> 27 <?php endwhile; ?> 28 29 </ul> 30 31 <?php else : ?> 32 33 <p id="no-pictures-msg"><?php echo plog_tr('There are no pictures in this album')?>.</p> 34 35 <?php endif; ?> 36 37 </div> 38 27 </div><!-- /thumbnail container --> 39 28 <?php plogger_get_footer(); ?>
