Server : nginx/1.20.1 System : Linux ccpf-production-2021 5.4.0-148-generic #165-Ubuntu SMP Tue Apr 18 08:53:12 UTC 2023 x86_64 User : forge ( 1000) PHP Version : 7.4.21 Disable Function : 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, Directory : /home/forge/gcc-ccpf.com/wp-content/themes/labora/ |
<?php
/**
* The template for displaying the header
* @package WordPress
* @subpackage Labora
* @since Labora 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php if ( get_option( 'labora_custom_favicon' ) ) { ?>
<link rel="shortcut icon" href="<?php echo esc_url( get_option( 'labora_custom_favicon' ) ); ?>" type="image/x-icon" />
<?php } ?>
<?php
if ( is_singular() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<!-- 404 Page -->
<div class="wrap404">
<div class="error_404">
<i calss="fa fa-traffic-cone"></i>
<?php
echo '<h2>' . esc_html__( '404', 'labora' ) . '</h2>';
echo '<h5>' . esc_html__( 'SORRY - PAGE NOT FOUND!', 'labora' ) . '</h5>';
echo '<p>' . esc_html__( 'The page you are looking for was moved, removed, or does not exist.', 'labora' ) . '</p>';
echo '<h6><a class="btn green small" href="' . esc_url( site_url() ) . '">' . esc_html__( 'Go To HomePage', 'labora' ) . '</a></h6>';
?>
</div>
</div>
</body>
</html>
<?php