File: //proc/thread-self/root/var/www/html/wpprotonperinggit/wp-content/themes/voiture/404.php
<?php
/**
* The template for displaying 404 pages (not found)
*
* @package WordPress
* @subpackage Voiture
* @since Voiture 1.0
*/
/*
*Template Name: 404 Page
*/
get_header();
?>
<section class="page-404">
<div id="main-container" class="inner">
<div id="main-content" class="main-page">
<div class="container">
<div class="content-inner text-center">
<div class="slogan">
<h4 class="title-big">
<?php
$title = voiture_get_config('404_title');
if ( !empty($title) ) {
echo esc_html($title);
} else {
esc_html_e('Oh! Page Not Found', 'voiture');
}
?>
</h4>
</div>
<div class="top-image">
<h3 class="des-big">
<?php
$des = voiture_get_config('404_des');
if ( !empty($des) ) {
echo esc_html($des);
} else {
echo sprintf( esc_html__( '%s', 'voiture' ), '4<span class="text-yellow">0</span>4' );
}
?>
</h3>
</div>
<div class="return">
<a class="btn btn-second" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php esc_html_e('Back to Home','voiture') ?></a>
</div>
</div>
</div>
</div><!-- .content-area -->
</div>
</section>
<?php get_footer(); ?>