This code for index.php. Any apparent issues that block loading in IE?
<?php get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(‘<p>Read the rest of this entry »</p>’); ?>
</div>
<div class=”postmetadata”><p>Posted by <?php the_author(); ?> on <?php the_time(‘d M Y’) ?> at <?php the_time() ?> under <?php the_category(‘, ‘) ?> | <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?>
<?php edit_post_link(‘Edit this entry’, ‘ | ‘, ”); ?>
</p></div>
</div>
<?php endwhile; ?>
<div class=”navigation”>
<div class=”align-right”><?php previous_posts_link(‘Next Entries »’) ?></div>
<div class=”align-left”><?php next_posts_link(‘« Previous Entries’) ?></div>
</div>
<?php else : ?>
<div class=”post”>
<h2>Page Not Found</h2>
<div class=”entry”>
<p>Sorry, the page you tried to access cannot be found.</p>
</div>
</div>
<?php endif; ?>
</div> <!– end of content div –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>