Copy of Index.php for the Epilepsy Theme
<?php get_header(); ?>
<div class="container">
<div class="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h1>
<div class="descr"><?php the_time('F jS, Y') ?> by <?php the_author() ?> </div>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<p class="info">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit','','|'); ?> <img src="<?php bloginfo('stylesheet_directory'); ?>/img/comments.gif" alt="" /> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
<div class="divider"></div>
</div>
<?php comments_template(); ?>
<?php endwhile; ?>
<p align="center"><?php next_posts_link('« Previous Entries') ?> <?php previous_posts_link('Next Entries »') ?></p>
<?php else : ?>
<h2 align="center">Not Found</h2>
<p align="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
<?php get_footer(); ?>
</div>
</body>
</html>
*********