Нет описания

404.php 839B

12345678910111213141516171819202122232425262728293031323334353637
  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 XShop
  8. */
  9. get_header();
  10. ?>
  11. <div class="container">
  12. <main id="primary" class="site-main xmain-404 shadow mt-5 mb-5">
  13. <section class="error-404 not-found pb-5 pt-5 text-center">
  14. <header class="page-header pb-3">
  15. <h1 class="page-title"><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'xshop' ); ?></h1>
  16. </header><!-- .page-header -->
  17. <div class="page-content">
  18. <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'xshop' ); ?></p>
  19. <?php
  20. get_search_form();
  21. ?>
  22. </div><!-- .page-content -->
  23. </section><!-- .error-404 -->
  24. </main><!-- #main -->
  25. </div>
  26. <?php
  27. get_footer();