File: D:/HostingSpaces/KLeeuwen/old.samenbouwen.in/wwwroot/wp-content/themes/samenbouwenin/single.php
<?php get_header(); ?>
<div class="aftermenubar"></div>
<?php while ( have_posts() ) : the_post();
the_breadcrumb();
endwhile;
rewind_posts();
?>
<div class="row-fluid">
<div class="span6">
<h1><?php echo get_the_title(); ?></h1>
<div class="blueline"></div>
</div>
<div class="span6">
<div class="pull-right">
<a href="https://twitter.com/SamenBouwen_in" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/imgs/t-blue.jpg" alt="" /></a>
<a href="https://www.facebook.com/SamenBouwen.in" target="_blank"><img src="<?php echo get_template_directory_uri(); ?>/imgs/f-blue.jpg" alt="" /></a>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="span12">
<?php
// TO SHOW THE PAGE CONTENTS
while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop -->
<div class="entry-content-page">
<?php the_content(); ?> <!-- Page Content -->
</div><!-- .entry-content-page -->
<?php
endwhile; //resetting the page loop
wp_reset_query(); //resetting the page query
?>
<div class="clear"></div>
</div>
</div>
<?php get_footer(); ?>