I am having this issue when I am logged out of the back-office of Wordpress.
http://www.secure-events.co.za/about-us
For some reason the stops showing after the endwhile tag. Or it could be after the the_content() function. Here is the code:
<?php get_header(); ?>
<div id="primary">
<div id="content" class="content-singular" role="main">
<div class="pad">
<div class="hentry">
<?php while ( have_posts() ) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
</div>
<div id="footer">
</div>
</div>
</div>
<?php get_footer(); ?>
This only happens when I am logged out of the back-office. Strange right?