File: /homepages/38/d934194269/htdocs/clickandbuilds/luxembourgauction/wp-content/themes/probid/404.php
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package probid
*/
get_header();
?>
<?php if (class_exists('CSF')) : ?>
<div class="error-page sec-mar">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="error-wrap">
<img src="<?php echo esc_url(Egns\Helper\Egns_Helper::egns_get_theme_option('404_image', 'url')) ?>" alt="">
<div class="error-content">
<?php if (!empty(Egns\Helper\Egns_Helper::egns_get_theme_option('404_title'))) : ?>
<h1><?php echo wp_kses(Egns\Helper\Egns_Helper::egns_get_theme_option('404_title'), wp_kses_allowed_html('post')) ?></h1>
<?php endif; ?>
<?php if (Egns\Helper\Egns_Helper::egns_get_theme_option('404_content')) : ?>
<p><?php echo wp_kses(Egns\Helper\Egns_Helper::egns_get_theme_option('404_content'), wp_kses_allowed_html('post')) ?></p>
<?php endif; ?>
<div class="back-btn d-flex justify-content-center">
<a class="primary-btn btn-hover" href="<?php echo esc_url(home_url('/')); ?>">
<?php echo wp_kses(Egns\Helper\Egns_Helper::egns_get_theme_option('404_button_text'), wp_kses_allowed_html('post')) ?>
<span></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php else : ?>
<div class="error-page sec-mar">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="error-wrap">
<img src="<?php echo esc_url(get_template_directory_uri() . '/assets/img/inner-pages/error-img.png') ?>" alt="">
<div class="error-content">
<h1><?php echo esc_html__("Sorry! We Can't Find That Page.", "probid") ?></h1>
<p><?php echo esc_html__("OPPS! Something went wrong, web page that is displayed to the user when the server cannot find the requested page.", "probid") ?></p>
<div class="back-btn d-flex justify-content-center">
<a class="primary-btn btn-hover" href="index.html">
<?php echo esc_html__('Go home', 'probid') ?>
<span></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endif ?>
<?php
get_footer();