404.php 860 B

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