I accidently erased

my content code that allows my written content to be seen. Does anyone have any suggestions on how to bring it back? I am using the Page Template and this is what it looks like:
<?php include "header.php"; ?>
<div id="container">
<div id="topcontent"></div>
<div id="singlecontent">
<div class="singlepost">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
*****this is where I believe I accidently deleted a content code******
<div id="content"> </div>
<?php endwhile; endif; ?>
</div>
<div id="bottomcontent"> </div>
</div>
</div>
<?php include('footer.php'); ?>
<?php comments_template();?>
ANY suggestions welcome!! Thanks a million!!