MMMM interesante respuesta, no me he fijado eso. Chequeo y te aviso.🙂
---------- Post agregado el 18-jun-2013 hora: 19:30 ----------
Esto es el page.php
<?php get_header(); ?>
<div class="span-24" id="contentwrap">
    <?php get_sidebars(); ?>
	<div class="span-16 last">
		<div id="content">	
			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
			<div class="post" id="post-<?php the_ID(); ?>">
			<h2 class="title"><?php the_title(); ?></h2>
				<div class="entry">
<?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(336,300), array("class" => "alignleft post_thumbnail")); } ?>
					<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
	
					<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
	
				</div>
			</div>
			<?php endwhile; endif; ?>
		<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
		</div>
	</div>
</div>
<?php get_footer(); ?>
----------------------------------------------------------------------------------------
y esto es el index.php
<?php get_header(); ?>
		<div class="span-24" id="contentwrap">
        <?php get_sidebars(); ?>
			<div class="span-16 last">
				<div id="content">		
                <?php if(is_home()) { include (TEMPLATEPATH . '/featured.php'); } ?>
					<?php if (have_posts()) : ?>	
						<?php while (have_posts()) : the_post(); ?>
						
						<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
                        
                            <div class="postdate"><?php the_time('j F, Y') ?></div>
</h2>
							<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
			
							<div class="entry">
<?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array("class" => "alignleft post_thumbnail")); } ?>
								<?php the_content(''); ?><p>Publicado por:<?php the_author_posts_link(); ?></p>  
							</div>
                            <div class="readmorecontent">
								<a class="readmore" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Leer más »</a>
							</div>
						</div><!--/post-<?php the_ID(); ?>-->
				
				<?php endwhile; ?>
				<div class="navigation">
					<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?>
					<div class="alignleft"><?php next_posts_link('« Entradas anteriores') ?></div>
					<div class="alignright"><?php previous_posts_link('Nuevas entradas »')  ?></div>
					<?php } ?>
				</div>
				<?php else : ?>
					<h2 class="center">No encontrado</h2>
					<p class="center">Lo sentimos, no existe lo que usted busca.</p>
					<?php get_search_form(); ?>
			
				<?php endif; ?>
				</div>
			</div>
	</div>
<?php get_footer(); ?>
---------------------------------------------------------------
Pero creo tienes razón que le haya quitado algun Div, porque estuve quitando cosas. Ahora la pregunta es donde!