themes-wordpress/tronar/patterns/404.php
Sarah Norris d0db47d2b6
Tronar: Enforce strict typing in PHP files (#7472)
* Add declare( strict_types = 1 ) to functions.php

* Add declare( strict_types = 1 ) to all pattern files
2023-11-09 14:05:08 +00:00

17 lines
516 B
PHP

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