page.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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
  10. printf( __( 'Posted <time class="updated" datetime="%1$s" pubdate>%2$s</time> by <span class="author">%3$s</span>.', 'bonestheme' ), get_the_time( 'Y-m-j' ), get_the_time( __( 'F jS, Y', 'bonestheme' ) ), bones_get_the_author_posts_link());
  11. ?></p>
  12. </header> <!-- end article header -->
  13. <section class="entry-content clearfix" itemprop="articleBody">
  14. <?php the_content(); ?>
  15. </section> <!-- end article section -->
  16. <footer class="article-footer">
  17. <?php the_tags( '<span class="tags">' . __( 'Tags:', 'bonestheme' ) . '</span> ', ', ', '' ); ?>
  18. </footer> <!-- end article footer -->
  19. <?php comments_template(); ?>
  20. </article> <!-- end article -->
  21. <?php endwhile; else : ?>
  22. <article id="post-not-found" class="hentry clearfix">
  23. <header class="article-header">
  24. <h1><?php _e( 'Oops, Post Not Found!', 'bonestheme' ); ?></h1>
  25. </header>
  26. <section class="entry-content">
  27. <p><?php _e( 'Uh Oh. Something is missing. Try double checking things.', 'bonestheme' ); ?></p>
  28. </section>
  29. <footer class="article-footer">
  30. <p><?php _e( 'This is the error message in the page.php template.', 'bonestheme' ); ?></p>
  31. </footer>
  32. </article>
  33. <?php endif; ?>
  34. </div> <!-- end #main -->
  35. <?php get_sidebar(); ?>
  36. </div> <!-- end #inner-content -->
  37. </div> <!-- end #content -->
  38. <?php get_footer(); ?>