<?php
/**
 * @package WordPress
 * @subpackage Bwoup
 */
get_header();
?>

	<div id="page_content">

	<div id="content">

	<div id="content_main">

	<?php /* Top post navigation */ ?>
	<?php global $wp_query; $total_pages = $wp_query->max_num_pages; if ( $total_pages > 1 ) { ?>
		<div id="nav-above" class="navigation">
			<div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">&laquo;</span> Older posts', 'your-theme' )) ?></div>
			<div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">&raquo;</span>', 'your-theme' )) ?></div>
			<div class="clear"></div>
		</div><!-- #nav-above -->
	<?php } ?>
	
	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>

		<?php /* Create a div with a unique ID thanks to the_ID() and semantic classes with post_class() */ ?>		
			<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>				

			<div class="entry-contentwrapper">

					<!-- TITLE -->
					<?php include( TEMPLATEPATH . '/singleprod_title.php' ); ?>

					<div class="entry-content">

						<!-- Content BEGIN -->
						<div class="entry-content-thecontent">
							<?php the_content(); ?>
						</div>
						<!-- Content END -->

						<div class="clear"></div>

						<!-- DATASHEET -->
						<?php include( TEMPLATEPATH . '/singleprod_datasheet.php' ); ?>

						<!-- BUTTONS -->
						<?php include( TEMPLATEPATH . '/singleprod_buttons.php' ); ?>
			
						<div class="clear"></div>

					</div>

					<!-- PROD FOOTER -->
					<?php include( TEMPLATEPATH . '/singleprod_prodfooter.php' ); ?>
					
				</div>		


			</div><!-- #post-<?php the_ID(); ?> -->
		<?php /* Close up the post div and then end the loop with endwhile */ ?>
	
	<?php endwhile; else: ?>
	<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
	<?php endif; ?>
	
	<?php /* Bottom post navigation */ ?>
		<?php global $wp_query; $total_pages = $wp_query->max_num_pages; if ( $total_pages > 1 ) { ?>
			<div id="nav-below" class="navigation">
				<div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">&laquo;</span> Older posts', 'your-theme' )) ?></div>
				<div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">&raquo;</span>', 'your-theme' )) ?></div>
				<div class="clear"></div>
			</div><!-- #nav-below -->
		<?php } ?>

	<div class="clear"></div>
	</div>

	</div>

	<?php get_sidebar(); ?>

	<div class="clear"></div>

	</div>

<?php get_footer(); ?>
