404.php 823 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * The template for displaying 404 pages (not found)
  4. *
  5. * @link https://codex.wordpress.org/Creating_an_Error_404_Page
  6. *
  7. * @package Seedlet
  8. * @since 1.0.0
  9. */
  10. get_header();
  11. ?>
  12. <section id="primary" class="content-area">
  13. <main id="main" class="site-main default-max-width" role="main">
  14. <div class="error-404 not-found">
  15. <header class="page-header">
  16. <h1 class="page-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'seedlet' ); ?></h1>
  17. </header><!-- .page-header -->
  18. <div class="page-content">
  19. <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'seedlet' ); ?></p>
  20. <?php get_search_form(); ?>
  21. </div><!-- .page-content -->
  22. </div><!-- .error-404 -->
  23. </main><!-- #main -->
  24. </section><!-- #primary -->
  25. <?php
  26. get_footer();