<?php
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_date('','<h2>','</h2>'); ?>
<div class="post <?php foreach((get_the_category()) as $cat) { echo $cat->category_nicename; } ?>">
<div class="post-title">
<h3 id="cat-<?php foreach((get_the_category()) as $cat) { echo $cat->cat_ID; } ?>"><a href="/category/wow/<?php foreach((get_the_category()) as $cat) { echo $cat->category_nicename; } ?>/"><?php foreach((get_the_category()) as $cat) { echo $cat->cat_name; } ?></a></h3>
<h4 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h4>
</div>
<div class="post-copy">
<?php the_content(__('(more...)')); ?>
<div class="sig-<?php foreach((get_the_category()) as $cat) { echo $cat->category_nicename; } ?>"></div>
<?php comments_template(); // Get wp-comments.php template ?>
</div>
<div class="post-footer">
<div class="edit">
<?php edit_post_link(__('Edit This')); ?>
</div>
<div class="feedback">
<?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
</div>
</div>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php endwhile; ?>
<?php endif; ?>
<div id="page">
<?php posts_nav_link(' ', __('New Stories'), __('Old Stories')); ?>
</div>
<?php get_footer(); ?>