[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
<?php get_header(); ?>
<?php include('pagemenu.php') ?>
<!-- start: content -->
<div id="content">
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2><?php the_time('l, F jS, Y'); ?>
<div class="entry">
<?php the_content(); ?>
<p class="postmetadata">
<?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?>
<!-- start: tag codes added -->
<?php if (get_the_tags()) the_tags('Tags: ? ',' - ',' ? '); ?>
<!-- end: tag codes added -->
<?php comments_popup_link('No Comments ?', '1 Comment ?', '% Comments ?'); ?> <?php edit_post_link('Edit', ' | ', ''); ?>
</p>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<!-- commented out code to use default next and previous page -->
<?php posts_nav_link(/* 'in between ','before',' after' */); ?>
</div>
<?php else : ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php _e('Not Found'); ?></h2>
</div>
<?php endif;?>
</div>
<!-- end: content -->
</div>
<!-- end: container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
this is from my index.php.
sorry about that!!!