Nope. Nothing.
This is the code:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Post Number: <?php the_ID(); ?>
<div class="post"><!-- Post Div-->
<h2 id="post-<?php the_ID(); ?>">
" rel="bookmark"><?php the_title(); ?>
</h2>
<div class="entry">
<?php the_content(__('(more...)')); ?>
<?php link_pages('<p class="postmetadata">Pages:', '', 'number'); ?>
</div>
</div><!-- End of post div-->
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this page!', '', ''); ?>
Anything in there that would be missing? or not needed?