If you scroll all the way down to the bottom here it shows the "Older Posts" link at the bottom left(ish). My index.php is as follows:
<?php get_header() ?>
<?php
$postnum = 1;
$showFirstAd = 1;
query_posts('cat=-1');
?>
<?php while ( have_posts() ) : the_post() ?>
<div id="post-<?php the_ID() ?>" class="<?php typograph_post_class() ?>">
<div class="post-date">
<span class="post-month"><?php the_time('M') ?></span>
<span class="post-day"><?php the_time('d') ?></span>
</div>
<div class="cat-links">
<?php printf(__('%s'), get_the_category_list(', ')) ?>
<?php edit_post_link(__('Edit'), "\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n"); ?>
</div>
<h2 class="entry-title">" title="<?php printf(__('Permalink to %s'), wp_specialchars(get_the_title(), 1)) ?>" rel="bookmark"><?php the_title() ?></h2>
<div class="entry-content">
<?php the_content(''.__('Get the whole story <span class="meta-nav">»</span>').''); ?>
<?php wp_link_pages('before=<div class="page-link">' .__('Pages:') . '&after=</div>') ?>
</div>
<div class="cat-links">
<?php the_tags(__('<span class="tag-links">Tags: '), ", ", "</span>\n\t\t\t\t\t") ?>
</div>
</div><!-- .post -->
<div class="clear"></div>
<?php comments_template() ?>
<?php endwhile ?>
<div id="nav-below" class="navigation">
<div class="nav-previous"><?php next_posts_link(__('<span class="meta-nav">«</span> Older posts')) ?></div>
<div class="nav-next"><?php previous_posts_link(__('Newer posts <span class="meta-nav">»</span>')) ?></div>
</div>
</div><!-- #content -->
<?php get_sidebar() ?>
</div><!-- #container -->
<?php get_footer() ?>
___________________________________________________________________
my page.php is as follows:
<?php get_header() ?>
<div class="singlepost">
<?php the_post() ?>
<div id="post-<?php the_ID(); ?>">
<div class="entry-content">
<?php the_content() ?>
<?php wp_link_pages("\t\t\t\t\t<div class='page-link'>".__('Pages: '), "</div>\n", 'number'); ?>
<?php edit_post_link(__('Edit'),'<span class="edit-link">','</span>') ?>
</div>
</div>
</div><!-- .post -->
<?php if ( get_post_custom_values('comments') ) comments_template() // Add a key+value of "comments" to enable comments on this page ?>
</div><!-- #content -->
<?php get_sidebar() ?>
</div><!-- #container -->
<?php get_footer() ?>