404.php 721 B

123456789101112131415161718192021222324252627
  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 WordPress
  8. * @subpackage Twenty_Twenty_One
  9. * @since Twenty Twenty-One 1.0
  10. */
  11. get_header();
  12. ?>
  13. <header class="page-header alignwide">
  14. <h1 class="page-title"><?php esc_html_e( 'Nothing here', 'twentytwentyone' ); ?></h1>
  15. </header><!-- .page-header -->
  16. <div class="error-404 not-found default-max-width">
  17. <div class="page-content">
  18. <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentytwentyone' ); ?></p>
  19. <?php get_search_form(); ?>
  20. </div><!-- .page-content -->
  21. </div><!-- .error-404 -->
  22. <?php
  23. get_footer();