404.php 490 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * The template for displaying 404 pages (not found)
  4. *
  5. * @package Blockbase
  6. * @since 1.1.1
  7. */
  8. get_header();
  9. ?>
  10. <main class="container-404">
  11. <h1 class="has-text-align-center has-medium-font-size"><?php _e( 'Oops! That page can&rsquo;t be found.', 'blockbase' ); ?></h1>
  12. <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'blockbase' ); ?></p>
  13. <?php echo do_blocks('<!-- wp:search {"label":""} /-->'); ?>
  14. </main>
  15. <?php
  16. get_footer();