<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package Katerio
*/
get_header();
?>
<div id="primary" class="content-area">
<div class="container">
<div class="section-inner">
<main id="main" class="site-main" role="main">
<?php
$template = th90_display_elementor_content( th90_opt( '404_template' ) );
if ( $template ) {
echo apply_filters( 'th90_print_404_template', $template );
}
else {
?>
<div class="page-container">
<div class="content-404 text-center">
<h1 class="page-404-number"><?php esc_html_e( '404', 'katerio' ); ?></h1>
<h2><?php esc_html_e( 'Page not found', 'katerio' ); ?></h2>
<p><?php esc_html_e( 'Don’t fret! Let’s get you back on track. Perhaps searching can help', 'katerio' ); ?></p>
<!-- Search form -->
<?php get_search_form(); ?>
</div>
</div>
<?php
}
?>
</main><!-- #main -->
<?php get_sidebar(); ?>
</div> <!-- .section-inner -->
</div> <!-- .container -->
</div><!-- #primary -->
<?php
get_footer();