single.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php get_header(); ?>
  2. <div id="content" class="clearfix">
  3. <div id="main" class="col620 left first clearfix" role="main">
  4. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  5. <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
  6. <header>
  7. <h1 class="single-title"><?php the_title(); ?></h1>
  8. <p class="meta"><?php _e("Posted", "bonestheme"); ?> <time datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time('F jS, Y'); ?></time> <?php _e("by", "bonestheme"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "bonestheme"); ?> <?php the_category(', '); ?>.</p>
  9. </header> <!-- end article header -->
  10. <section class="post_content clearfix">
  11. <?php the_content(); ?>
  12. </section> <!-- end article section -->
  13. <footer>
  14. <?php the_tags('<p class="tags"><span class="tags-title">Tags:</span> ', ', ', '</p>'); ?>
  15. </footer> <!-- end article footer -->
  16. </article> <!-- end article -->
  17. <?php comments_template(); ?>
  18. <?php endwhile; ?>
  19. <?php else : ?>
  20. <article id="post-not-found">
  21. <header>
  22. <h1>Not Found</h1>
  23. </header>
  24. <section class="post_content">
  25. <p>Sorry, but the requested resource was not found on this site.</p>
  26. </section>
  27. <footer>
  28. </footer>
  29. </article>
  30. <?php endif; ?>
  31. </div> <!-- end #main -->
  32. <?php get_sidebar(); // sidebar 1 ?>
  33. </div> <!-- end #content -->
  34. <?php get_footer(); ?>