
* Add declare( strict_types = 1 ) to functions.php * Add declare( strict_types = 1 ) to all pattern files
17 lines
516 B
PHP
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’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 -->
|