page.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php get_header(); ?>
  2. <div id="content">
  3. <div id="inner-content" class="wrap clearfix">
  4. <div id="main" class="eightcol first clearfix" role="main">
  5. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6. <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">
  7. <header class="article-header">
  8. <h1 class="page-title" itemprop="headline"><?php the_title(); ?></h1>
  9. <p class="byline vcard"><?php _e("Posted", "bonestheme"); ?> <time class="updated" datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time('F jS, Y'); ?></time> <?php _e("by", "bonestheme"); ?> <span class="author"><?php the_author_posts_link(); ?></span>.</p>
  10. </header> <!-- end article header -->
  11. <section class="entry-content clearfix" itemprop="articleBody">
  12. <?php the_content(); ?>
  13. </section> <!-- end article section -->
  14. <footer class="article-footer">
  15. <?php the_tags('<p class="tags"><span class="tags-title">Tags:</span> ', ', ', '</p>'); ?>
  16. </footer> <!-- end article footer -->
  17. <?php comments_template(); ?>
  18. </article> <!-- end article -->
  19. <?php endwhile; ?>
  20. <?php else : ?>
  21. <article id="post-not-found" class="hentry clearfix">
  22. <header class="article-header">
  23. <h1><?php _e("Oops, Post Not Found!", "bonestheme"); ?></h1>
  24. </header>
  25. <section class="entry-content">
  26. <p><?php _e("Uh Oh. Something is missing. Try double checking things.", "bonestheme"); ?></p>
  27. </section>
  28. <footer class="article-footer">
  29. <p><?php _e("This is the error message in the page.php template.", "bonestheme"); ?></p>
  30. </footer>
  31. </article>
  32. <?php endif; ?>
  33. </div> <!-- end #main -->
  34. <?php get_sidebar(); // sidebar 1 ?>
  35. </div> <!-- end #inner-content -->
  36. </div> <!-- end #content -->
  37. <?php get_footer(); ?>