Try this – I’m assuming you want to use the latest post on the main page:
<?php query_posts('posts_per_page=1');>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>"
rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php
the_title(); ?></a></h3>
<?php the_content(); ?>
<?php endwhile; endif; ?>
Then link to your page with the general archive.