1234567891011121314151617 |
- <?php declare( strict_types = 1 ); ?>
- <?php
- /**
- * Title: A 404 page
- * Slug: foam/404
- * Inserter: no
- */
- ?>
- <!-- wp:heading {"textAlign":"center","level":1,"fontSize":"x-large"} -->
- <h1 class="has-text-align-center has-x-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can’t be found.', 'foam' ); ?></h1>
- <!-- /wp:heading -->
- <!-- wp:paragraph -->
- <p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'foam' ); ?></p>
- <!-- /wp:paragraph -->
|