Advertisement
draney

Untitled

Sep 9th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($galleries)) : ?>
  2.  
  3. <div class="ngg-albumoverview">
  4.  
  5. <!-- List of galleries -->
  6. <?php foreach ($galleries as $gallery) : ?>
  7.  
  8. <div class="ngg-album-compact">
  9. <div class="ngg-album-compactbox">
  10. <div class="ngg-album-link">
  11. <a class="Link" href="<?php echo $gallery->pagelink ?>">
  12. <img class="Thumb" alt="<?php echo $gallery->title ?>" src="<?php echo $gallery->previewurl ?>"/>
  13. </a>
  14. </div>
  15. </div>
  16. <h4><a class="ngg-album-desc" title="<?php echo $gallery->title ?>" href="<?php echo $gallery->pagelink ?>" ><?php echo $gallery->title ?></a></h4>
  17. <?php if ($gallery->counter > 0) : ?>
  18. <p><strong><?php echo $gallery->counter ?></strong> <?php _e('Photos', 'nggallery') ?></p>
  19. <?php endif; ?>
  20. </div>
  21.  
  22. <?php endforeach; ?>
  23.  
  24. <!-- Pagination -->
  25. <?php echo $pagination ?>
  26.  
  27. </div>
  28.  
  29. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement