<?php
/*
Template Name: Gallery
*/
?>
<?php get_header(); ?>
<!--CENTER-->
<div id="center" class="clearfix">
<!--CONTENT-->
<div id="content">
<!--GALLERY-->
<div class="entry gallery clearfix">
<?php $paged = intval(get_query_var
('paged')); //pagenavi bug
if($paged == 0) {
$paged = 1;
}
query_posts("showposts=15&paged=$paged"); ?>
<?php $i = 0; ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php $fragmanSource = get_post_meta($post->ID, "fragman", true); ?>
<?php $post_images = post_gallery_get_images(); ?>
<?php $total_images = sizeof($post_images); ?>
<?php if ($fragmanSource != "" && $total_images > 0) : ?>
<?php $i++; ?>
<!--TRAILER-->
<div
class="trailer"<?php if($i%3) { echo ''; } else { echo ' style="margin:0"';} ?
>>
<?php $trailerTitle = get_the_title(); ?>
<h1
><a href
="<?php the_permalink() ?>" title
="<?php echo $trailerTitle; ?>"><?php
if (strlen($trailerTitle) >32) { echo substr($trailerTitle, 0, 31) . "…"; } else { echo $trailerTitle; } ?
></a
></h1
>
<a href="<?php echo $fragmanSource; ?>" class="thumb" rel="shadowbox[galeri];height=272;width=480">
<img src="/wp-content/plugins/post-gallery/thirdparty/phpthumb/phpThumb.php?src=/wp-content/plugins/post-gallery/uploads/<?php echo $post_images[0]['image_location']; ?>&w=180&h=200&zc=1" class="alignleft" alt="<?php echo $post_images[0]['image_title']; ?>" />
<span></span>
</a>
</div>
<!--/TRAILER-->
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<!--/GALLERY-->
<!--PAGINATION-->
<div id="pagination" class="clearfix">
</div>
<!--/PAGINATION-->
</div>
<!--/CONTENT-->
<?php get_sidebar(); ?>
</div>
<!--/CENTER-->
<?php get_footer(); ?>