404.php 845 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <article id="post-not-found" class="hentry cf">
  6. <header class="article-header">
  7. <h1><?php _e( 'Epic 404 - Article Not Found', 'bonestheme' ); ?></h1>
  8. </header>
  9. <section class="entry-content">
  10. <p><?php _e( 'The article you were looking for was not found, but maybe try looking again!', 'bonestheme' ); ?></p>
  11. </section>
  12. <section class="search">
  13. <p><?php get_search_form(); ?></p>
  14. </section>
  15. <footer class="article-footer">
  16. <p><?php _e( 'This is the 404.php template.', 'bonestheme' ); ?></p>
  17. </footer>
  18. </article>
  19. </div>
  20. </div>
  21. </div>
  22. <?php get_footer(); ?>