404.php 829 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * The template for displaying 404 pages (Not Found).
  4. *
  5. * @package Spun
  6. */
  7. get_header(); ?>
  8. <div id="primary" class="content-area">
  9. <div id="content" class="site-content site-content-background" role="main">
  10. <article id="post-0" class="post error404 not-found hentry">
  11. <header class="entry-header">
  12. <h1 class="entry-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'spun' ); ?></h1>
  13. </header><!-- .entry-header -->
  14. <div class="entry-content">
  15. <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'spun' ); ?></p>
  16. <?php get_search_form(); ?>
  17. </div><!-- .entry-content -->
  18. </article><!-- #post-0 .post .error404 .not-found -->
  19. </div><!-- #content .site-content -->
  20. </div><!-- #primary .content-area -->
  21. <?php get_footer(); ?>