I have a page template for a "Blog Page" that basically just provides a paged listing of the 5 latest posts. The issue: the posts are displayed in-full, and are ignoring the "more" tag I placed in them. How can I make the "more" tag be utilized? Here is the code for that page:
<?php
/*
Template Name: Blog Page
*/
?>
<?php get_header(); ?>
<div id="content">
<div id="contentleft">
<div class="postarea">
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<div class="date">
<p><?php the_time('F j, Y'); ?></p>
</div>
<?php the_content(__('[Read more]'));?><div style="clear:both;"></div>
<div class="postmeta2">
<p>Filed Under <?php the_category(', ') ?> · <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?> <?php edit_post_link('(Edit)', '', ''); ?></p>
</div>
<?php endwhile; ?>
<p><?php posts_nav_link(); ?></p>
</div>
</div>
<?php include(TEMPLATEPATH."/sidebar_post.php");?>
</div>
<!-- The main column ends -->
<?php get_footer(); ?>