`<?php get_header(); ?>
<div class="col1">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post-alt blog" id="post-<?php the_ID(); ?>">
<!--<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> -->
<h2><?php the_title(); ?></h2>
<p class="post_date"><?php _e('By ',woothemes); ?><?php the_author_posts_link(); ?><br><?php the_time('F j, Y'); ?> </p>
<?php
if(woo_get_embed('embed',595,420))
{
echo woo_get_embed('embed',595,420);
}
?>
<div class="entry">
<?php if (get_option('woo_image_single') == "false") woo_get_image('image',get_option('woo_single_width'),get_option('woo_single_height'),'thumbnail alignright'); ?>
<?php the_content(__('<span class="continue">Continue Reading</span>',woothemes)); ?>
</div>
</div><!--/post-->
<?php if (get_option('woo_author') == "true") { ?>
<?php } ?>
<div class="navigation">
<?php if (function_exists('wp_pagenavi')) wp_pagenavi(); else { ?>
<div class="alignleft"><?php previous_posts_link(__('« Newer Entries ',woothemes)) ?></div>
<div class="alignright"><?php next_posts_link(__(' Older Entries »',woothemes)) ?></div>
<br class="fix" />
<?php } ?>
</div>
<div id="comment">
</div>
<?php endwhile; ?>
<div class="navigation">
<?php if (function_exists('wp_pagenavi')) wp_pagenavi(); else { ?>
<div class="alignleft"><?php previous_posts_link(__('« Newer Entries ',woothemes)) ?></div>
<div class="alignright"><?php next_posts_link(__(' Older Entries »',woothemes)) ?></div>
<br class="fix" />
<?php } ?>
</div>
<?php endif; ?>
</div><!--/col1-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>