404.php 751 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The template for displaying 404 pages (Not Found)
  4. *
  5. * @package WordPress
  6. * @subpackage Twenty_Fourteen
  7. * @since Twenty Fourteen 1.0
  8. */
  9. get_header(); ?>
  10. <div id="primary" class="content-area">
  11. <div id="content" class="site-content" role="main">
  12. <header class="page-header">
  13. <h1 class="page-title"><?php _e( 'Not Found', 'twentyfourteen' ); ?></h1>
  14. </header>
  15. <div class="page-content">
  16. <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentyfourteen' ); ?></p>
  17. <?php get_search_form(); ?>
  18. </div><!-- .page-content -->
  19. </div><!-- #content -->
  20. </div><!-- #primary -->
  21. <?php
  22. get_sidebar( 'content' );
  23. get_sidebar();
  24. get_footer();