<?php
/*
Template Name: Full page slide show
*/
?>
<?php get_header(); ?>
<?php
if(have_posts()){
while(have_posts()){
the_post();
$title=get_the_title();
$pageId=get_the_ID();
$content=get_the_content();
}
}
?>
<?php $options = get_option('pb_options'); ?>
<div id="full_slide" class="clearfix">
<div id="left-col" class="bigcol">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php echo do_shortcode('[photospace auto_play=true hide_thumbs=true main_col_width=960 main_col_height=475]'); ?>
<?php endwhile; else: ?>
<div class="post-content">
<p>Sorry nothing found</p>
</div>
<?php endif; ?>
</div><!-- #left-col end -->
<?php // get_sidebar(); ?>
</div><!-- #middle-contents end -->
<?php get_footer(); ?>