I've been searching the forums and the codex for quite a bit now and I just can't figure out what I'm doing wrong. The "more tag" isn't showing up on my front page of my blog. It is created from a template page. Here is the code for the template page...
<?php
/*
Template Name: theindex
*/
?>
<?php get_header(); ?>
<!-- End header -->
<!-- Begin content -->
<div id="content-home">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php $lastposts = get_posts('numberposts=3'); foreach($lastposts as $post) : setup_postdata($post); ?>
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="meta">
<p><?php the_time('F jS, Y') ?></p>
</div>
<div class="main">
<?php the_content(__('(more...)')); ?>
<div class="comments">
<div class="category">
<?php the_category(',') ?></div>
<a href="<?php comments_link(); ?>"><?php comments_number('No Comments Yet','One Comment','% Comments'); ?></a></div>
</div>
<?php endforeach; ?>
</div>
<?php endwhile; else: ?>
<div class="warning">
<p><?php _e('Sorry, no posts matched your criteria, please try and search again.'); ?></p>
</div>
<?php endif; ?>
<!-- End content -->
<div id="middlebar">
<div id="getfeed"><a href="#"></a></div>
<div id="awards">Awards</div>
<div class="award-title"></div>
<a href="#"><img src="images/feed.jpg" width="151" height="97" /></a><a href="#"></a>
<p> <a href="#">Details about the site and stuff.</a></p>
</div>
<?php get_sidebar(); ?>
<div class="clear"></div>
<?php get_footer(); ?>
Any help with this would be very much appreciated. Thanks.