wp-73k/404.php

23 lines
491 B
PHP
Raw Normal View History

2019-05-23 12:30:31 -04:00
<?php
/**
* The template for displaying 404 pages (not found).
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Freeshifter
*/
get_header(); ?>
<main class="content-wrap">
2021-07-04 18:16:33 -04:00
<section class="container mx-auto relative z-10">
<h1>Oops! That page can't be found.</h1>
<p>It looks like nothing was found at this location. Maybe try one of the links below or a search?</p>
<?php
get_search_form(); ?>
</section>
2019-05-23 12:30:31 -04:00
</main>
<?php
get_footer();