404.php 745 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * The template for displaying 404 pages (not found).
  4. *
  5. * @package Button 2
  6. */
  7. get_header(); ?>
  8. <div id="primary" class="content-area">
  9. <main id="main" class="site-main" role="main">
  10. <section class="error-404 not-found">
  11. <header class="page-header">
  12. <h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'button-2' ); ?></h1>
  13. </header><!-- .page-header -->
  14. <div class="page-content">
  15. <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'button-2' ); ?></p>
  16. <?php get_search_form(); ?>
  17. </div><!-- .page-content -->
  18. </section><!-- .error-404 -->
  19. </main><!-- #main -->
  20. </div><!-- #primary -->
  21. <?php get_sidebar(); ?>
  22. <?php get_footer(); ?>