Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. get_header();
  3. ?>
  4.  
  5. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6.  
  7. <div class="post" id="post-<?php the_ID(); ?>">
  8.      <h2 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?>.</a></h2>
  9. <div class="commentlink"> <?php comments_popup_link(__('Comment'), __('one comment'), __('% comments')); ?></div>
  10. </div>
  11.    
  12.     <div class="storycontent">
  13.         <?php the_content(__('(more...)')); ?>
  14.     </div>
  15. <?php wp_link_pages(); ?>
  16.     <div class="meta"><?php the_category(',') ?> @ <?php the_time('g:i a') ?>, <?php the_time('F j, Y') ?> <?php edit_post_link(__('edit')); ?>
  17. <?php if ( function_exists('the_tags')) the_tags('<br/>', ', ', '');?>
  18. </div>
  19.  
  20. <?php comments_template(); // Get wp-comments.php template ?>
  21.  
  22. <?php endwhile; else: ?>
  23. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  24. <?php endif; ?>
  25.  
  26. <?php posts_nav_link(' &#8212; ', __('&laquo; Previous Page'), __('Next Page &raquo;')); ?>
  27.  
  28. <?php get_footer(); ?>