I just did that, but the tags still don’t show up.
Here’s the modified index:
<div id=”content”>
<?php if ($posts) : foreach ($posts as $post) : setup_postdata($post); ?>
<div class=”post”>
<h2 class=”post-title”>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?></h2>
<p class=”day-date”>Posted by <?php the_author_posts_link() ?> on <?php the_time(‘d M Y’); ?> | Tagged as: <?php the_tags(”, ‘ & ‘, ”); ?> <?php edit_post_link(); ?></p>
<div class=”post-content”><?php the_content(‘Continue Reading »’); ?>
<p class=”post-info”>
<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
</p>
<!–<?php trackback_rdf(); ?>–>
</div>
<?php comments_template(); ?>
</div>
<?php endforeach; else: ?>
<p><?php _e(‘Sorry, no posts match your criteria.’); ?></p>
<?php endif; ?>
<p align=”center”><?php posts_nav_link(‘ – ‘,’« Prev’,’Next »’) ?></p>
</div>