File: /home/slfopp7cb1df/www/theselfmasterybookclub.com/wp-content/themes/legacy-book-club/404.php
<?php
/**
* The template for displaying 404 pages (not found).
*
* @package Legacy Book Club
*/
get_header();
legacy_book_club_before_title();
if (true === get_theme_mod('legacy_book_club_enable_page_title', true)) :
do_action('legacy_book_club_get_page_title');
endif;
legacy_book_club_after_title();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<div class="content-page">
<div class="content-inner">
<div class="container">
<div class="row">
<?php
if('right'===esc_html(get_theme_mod('legacy_book_club_blog_sidebar','right'))) {
?>
<div id="post-wrapper" class="col-md-8">
<div class="page-content-area">
<h1 class="page-error"><?php esc_html_e( 'Oops! That page can’t be found.', 'legacy-book-club' ); ?></h1>
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links on right or a search?', 'legacy-book-club' ); ?></p>
<?php get_search_form(); ?>
</div>
</div>
<div id="sidebar-wrapper" class="col-md-4">
<?php get_sidebar('primary-sidebar'); ?>
</div>
<?php
}
else if('left'===esc_html(get_theme_mod('legacy_book_club_blog_sidebar','right'))) {
?>
<div id="sidebar-wrapper" class="col-md-4">
<?php get_sidebar('primary-sidebar'); ?>
</div>
<div id="post-wrapper" class="col-md-8">
<div class="page-content-area">
<h1 class="page-error"><?php esc_html_e( 'Oops! That page can’t be found.', 'legacy-book-club' ); ?></h1>
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links on right or a search?', 'legacy-book-club' ); ?></p>
<?php get_search_form(); ?>
</div>
</div>
<?php
}
else{
?>
<div class="col-md-12">
<div class="page-content-area">
<h1 class="page-error"><?php esc_html_e( 'Oops! That page can’t be found.', 'legacy-book-club' ); ?></h1>
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links on right or a search?', 'legacy-book-club' ); ?></p>
<?php get_search_form(); ?>
</div>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
</main>
</div>
<?php
get_footer();