File: /www/wwwroot/pulitocucito.it/wp-content/themes/laundry/404.php
<?php
/**
* The template for displaying 404 pages (not found).
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package laundry
*/
get_header();
$laundry_opt = laundry_get_options();
$theme = isset( $laundry_opt['laundry_demo_select'] ) ? $laundry_opt['laundry_demo_select'] : 1;
if ( $theme == '2' ) { ?>
<div class="container container-fluid-lg section-inner">
<div id="primary" class="row">
<main id="main" class="col-12" role="main">
<section class="error-404 not-found">
<header class="page-header">
<h1 class="text-center decor color"><?php esc_html_e( '404!', 'laundry' ); ?></h1>
<h3 class="page-title text-center"><?php esc_html_e( 'Oops! That page can’t be found.', 'laundry' ); ?></h3>
</header><!-- .page-header -->
<div class="page-content">
<div class="container-fluid search_404_form">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'laundry' ); ?></p>
<?php
get_search_form();
?>
</div>
</div><!-- .page-content -->
</section><!-- .error-404 -->
</main><!-- #main -->
</div>
</div>
<?php } else { ?>
<div id="primary" class="content-area container">
<main id="main" class="site-main col-md-9 column-center" role="main">
<section class="error-404 not-found">
<header class="page-header">
<h1 class="text-center decor color"><?php esc_html_e( '404!', 'laundry' ); ?></h1>
<h3 class="page-title text-center"><?php esc_html_e( 'Oops! That page can’t be found.', 'laundry' ); ?></h3>
</header><!-- .page-header -->
<div class="page-content">
<div class="container-fluid search_404_form">
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'laundry' ); ?></p>
<?php
get_search_form();
?>
</div>
</div><!-- .page-content -->
</section><!-- .error-404 -->
</main><!-- #main -->
<div class="col-md-3 column-right">
<?php get_sidebar(); ?>
</div>
</div><!-- #primary -->
<?php
}
get_footer();