404.php 715 B

1234567891011121314151617181920212223242526272829
  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 Affinity
  8. */
  9. get_header(); ?>
  10. <div id="primary" class="content-area">
  11. <main id="main" class="site-main" role="main">
  12. <section class="error-404 not-found">
  13. <header class="page-header">
  14. <h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'affinity' ); ?></h1>
  15. </header>
  16. <div class="page-content">
  17. <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try a search?', 'affinity' ); ?></p>
  18. <?php get_search_form(); ?>
  19. </div>
  20. </section>
  21. </main>
  22. </div>
  23. <?php
  24. get_footer();