MinimalistFlex/404.php
2024-08-29 15:18:30 +08:00

19 lines
630 B
PHP

<?php
if ( !defined( 'WPINC' ) ) {
die;
}
?>
<?php get_header() ?>
<div class="singular">
<div class="singular-main">
<h1 class="404-title"><?php esc_html_e( 'You&apos;ve reached the edge of the world.', 'minimalistflex' ) ?></h1>
<p><?php esc_html_e( 'It looks like the page you are looking for doesn&apos;t exist.', 'minimalistflex' ) ?></p>
<p><?php esc_html_e( 'What about a search?', 'minimalistflex' ) ?></p>
<?php get_search_form() ?>
<p><a href="javascript:history.go(-1)"><?php esc_html_e( 'Go back', 'minimalistflex' ) ?></a></p>
</div>
</div>
<?php get_footer() ?>