File: /web/data/blog.tbbbearing.com/wp-content/themes/read-more/404.php
<?php
/**
* The template for displaying 404 pages (not found).
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Acme Themes
* @subpackage Read More
*/
get_header();
global $read_more_customizer_all_values;
?>
<div id="content" class="site-content container clearfix">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="wrapper inner-main-title">
<header class="entry-header">
<h1 class="page-title"><?php esc_html_e( 'Oops! That page can’t be found.', 'read-more' ); ?></h1>
</header>
<?php
if( 1 == $read_more_customizer_all_values['read-more-show-breadcrumb'] ){
read_more_breadcrumbs();
}
?>
</div>
<section class="error-404 not-found">
<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?', 'read-more' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .page-content -->
</section><!-- .error-404 -->
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- #content -->
<?php get_footer();