404.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <article id="post-not-found" class="hentry clearfix">
  6. <header class="article-header">
  7. <h1><?php _e("Epic 404 - Article Not Found", "bonestheme"); ?></h1>
  8. </header> <!-- end article 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> <!-- end article section -->
  12. <section class="search">
  13. <p><?php get_search_form(); ?></p>
  14. </section> <!-- end search section -->
  15. <footer class="article-footer">
  16. <p><?php _e("This is the 404.php template.", "bonestheme"); ?></p>
  17. </footer> <!-- end article footer -->
  18. </article> <!-- end article -->
  19. </div> <!-- end #main -->
  20. </div> <!-- end #inner-content -->
  21. </div> <!-- end #content -->
  22. <?php get_footer(); ?>