page.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php get_header(); ?>
  2. <div id="content">
  3. <div id="inner-content" class="wrap cf">
  4. <div id="main" class="m-all t-2of3 d-5of7 cf" role="main">
  5. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6. <article id="post-<?php the_ID(); ?>" <?php post_class( 'cf' ); ?> 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">
  10. <?php 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(get_option('date_format')), get_the_author_link( get_the_author_meta( 'ID' ) )); ?>
  11. </p>
  12. </header> <?php // end article header ?>
  13. <section class="entry-content cf" itemprop="articleBody">
  14. <?php the_content(); ?>
  15. </section> <?php // end article section ?>
  16. <footer class="article-footer">
  17. <?php the_tags( '<p class="tags"><span class="tags-title">' . __( 'Tags:', 'bonestheme' ) . '</span> ', ', ', '</p>' ); ?>
  18. </footer> <?php // end article footer ?>
  19. <?php comments_template(); ?>
  20. </article> <?php // end article ?>
  21. <?php endwhile; else : ?>
  22. <article id="post-not-found" class="hentry cf">
  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> <?php // end #main ?>
  35. <?php get_sidebar(); ?>
  36. </div> <?php // end #inner-content ?>
  37. </div> <?php // end #content ?>
  38. <?php get_footer(); ?>