BTW, my index.php file looks like this:
<?php get_header(); ?>
<div id=”content”>
<div id=”contentleft”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<p>Posted on <?php the_time(‘F j, Y’); ?> <?php edit_post_link(‘(Edit Post)’, ”, ”); ?>
Filed Under <?php the_category(‘, ‘) ?></p>
<?php the_content(__(‘Read more’));?>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
<div style=”clear:both;”></div>
<!–
<?php trackback_rdf(); ?>
–>
<?php endwhile; else: ?>
<php wp_pagebar(array(‘before’=>’pages: ‘)); ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>
<h3>Comments</h3>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
<?php include(TEMPLATEPATH.”/sidebar.php”);?>
</div>
<!– The main column ends –>
<?php get_footer(); ?>