404.php 890 B

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