HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
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(); ?>