File: D:/HostingSpaces/KLeeuwen/old.samenbouwen.in/wwwroot/wp-content/themes/samenbouwenin/page.php
<?php get_header(); ?>
<div class="aftermenubar"></div>
<!-- <?php while ( have_posts() ) : the_post();
the_breadcrumb();
endwhile;
rewind_posts();
?> -->
<?php if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb('<p id="breadcrumbs">','</p>');
} ?>
<div class="row-fluid">
<div class="span9">
<h1><?php echo get_the_title(); ?></h1>
<div class="blueline"></div>
<?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>
<div class="span3">
<h3 class="orgtext"> MEER <?php
echo empty( $post->post_parent ) ? get_the_title( $post->ID ) : get_the_title( $post->post_parent );
?></h3>
</div>
</div>
</div>
<?php get_footer(); ?>