|
@@ -5,20 +5,14 @@
|
|
* @package Blockbase
|
|
* @package Blockbase
|
|
* @since 1.1.1
|
|
* @since 1.1.1
|
|
*/
|
|
*/
|
|
-wp_head();
|
|
|
|
-
|
|
|
|
-echo gutenberg_block_template_part( 'header' );
|
|
|
|
|
|
+get_header();
|
|
?>
|
|
?>
|
|
|
|
+ <main class="container-404">
|
|
|
|
+ <h1 class="has-text-align-center has-large-font-size"><?php _e( 'Oops! That page can’t be found.', 'blockbase' ); ?></h1>
|
|
|
|
|
|
-<main class="container-404">
|
|
|
|
- <h1 class="has-text-align-center has-large-font-size"><?php _e( 'Oops! That page can’t be found.', 'blockbase' ); ?></h1>
|
|
|
|
-
|
|
|
|
- <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'blockbase' ); ?></p>
|
|
|
|
-
|
|
|
|
- <?php echo do_blocks('<!-- wp:search {"label":""} /-->'); ?>
|
|
|
|
-</main>
|
|
|
|
|
|
+ <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'blockbase' ); ?></p>
|
|
|
|
|
|
|
|
+ <?php echo do_blocks('<!-- wp:search {"label":""} /-->'); ?>
|
|
|
|
+ </main>
|
|
<?php
|
|
<?php
|
|
-echo gutenberg_block_template_part( 'footer' );
|
|
|
|
-
|
|
|
|
-wp_footer();
|
|
|
|
|
|
+get_footer();
|