Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

404.php 909 B

3 år sedan
12345678910111213141516171819202122232425262728293031323334
  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_Seventeen
  9. * @since 1.0
  10. * @version 1.0
  11. */
  12. get_header(); ?>
  13. <div class="wrap">
  14. <div id="primary" class="content-area">
  15. <main id="main" class="site-main" role="main">
  16. <section class="error-404 not-found">
  17. <header class="page-header">
  18. <h1 class="page-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'twentyseventeen' ); ?></h1>
  19. </header><!-- .page-header -->
  20. <div class="page-content">
  21. <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentyseventeen' ); ?></p>
  22. <?php get_search_form(); ?>
  23. </div><!-- .page-content -->
  24. </section><!-- .error-404 -->
  25. </main><!-- #main -->
  26. </div><!-- #primary -->
  27. </div><!-- .wrap -->
  28. <?php get_footer();