347903e0f7
* Blockbase: Update font size names * Add overrides to geologist and quadrat * Add a tiny custom variable to blockbase * update templates to use new variable * update block patterns * update the post-meta font sizes * Add a medium font size and make huge bigger * replace font sizes in patterns with explict pixel values Co-authored-by: Jeffrey Pearce <jeffikus@automattic.com>
18 lines
490 B
PHP
18 lines
490 B
PHP
<?php
|
|
/**
|
|
* The template for displaying 404 pages (not found)
|
|
*
|
|
* @package Blockbase
|
|
* @since 1.1.1
|
|
*/
|
|
get_header();
|
|
?>
|
|
<main class="container-404">
|
|
<h1 class="has-text-align-center has-medium-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>
|
|
<?php
|
|
get_footer();
|