File: /var/www/html/site/newsite/wp-content/themes/xinl/404.php
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package finley
*/
get_header();
?>
<main id="primary" class="site-main">
<div class="container">
<section class="error-404 not-found">
<h1 class="page-title"><?php esc_html_e('Oops! That page can’t be found.', 'finley'); ?></h1>
<div class="page-content">
<p><?php esc_html_e('It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'finley'); ?></p>
<?php
get_search_form();
?>
</div><!-- .page-content -->
</section><!-- .error-404 -->
</div>
</main><!-- #main -->
<?php
get_footer();