After I've changed the default theme, the "older entries" link doesn't show up, only when I read a single article. What's wrong with my index.php ?
<?php get_header(); ?>
<div class="contentLayout">
<div class="sidebar1">
<?php include (TEMPLATEPATH . '/sidebar1.php'); ?>
</div>
<div class="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="Post">
<div class="Post-body">
<div class="Post-inner">
<h2 class="PostHeaderIcon-wrapper"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</h2>
<img class="metadata-icon" src="<?php bloginfo('template_url'); ?>/images/PostDateIcon.png" width="18" height="18" alt="PostDateIcon"/> <?php the_time('F jS, Y') ?><img class="metadata-icon" src="<?php bloginfo('template_url'); ?>/images/PostAuthorIcon.png" width="18" height="18" alt="PostAuthorIcon"/> Author: <a href="#" title="author"><?php the_author() ?></a><?php edit_post_link('Edit', ' | '); ?><div class="PostContent">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<?php if (!is_page()): ?>
<div class="PostMetadataFooter">
<img class="metadata-icon" src="<?php bloginfo('template_url'); ?>/images/PostCategoryIcon.png" width="18" height="18" alt="PostCategoryIcon"/> Category: <?php the_category(', ') ?> | <img class="metadata-icon" src="<?php bloginfo('template_url'); ?>/images/PostTagIcon.png" width="18" height="18" alt="PostTagIcon"/> <?php the_tags('Tags: ', ', ', ' '); ?> | <img class="metadata-icon" src="<?php bloginfo('template_url'); ?>/images/PostCommentsIcon.png" width="18" height="18" alt="PostCommentsIcon"/> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
</div>
<?php endif; ?>
<?php if (is_single() && !is_page()): ?>
<div class="navigation">
<div class="alignleft"><?php previous_post_link('« %link') ?></div>
<div class="alignright"><?php next_post_link('%link »') ?></div>
</div>
<?php comments_template(); ?>
<?php endif; ?>
<?php if (is_page()) edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
</div>
<div class="clear-float"></div>
<?php get_footer(); ?>