File: /home/roshanchandy/public_html/dubai91.com/wp-content/themes/inclub/template-parts/404.php
<?php
/**
 * The template for displaying 404 pages (not found).
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
global $INCLUB_STORAGE;
$background_image 	= get_theme_mod( 'header_background_image', $INCLUB_STORAGE['header_background_image'] );
if($background_image) {
	$background_image 	= 	wp_get_attachment_image_src( $background_image , 'full' );
	if(isset($background_image[0])) {
		$background_image	=	$background_image[0];
	}
}
?>
<main id="content" class="site-main">
	<div class="page-header" <?php if($background_image) { ?> style="background-image: url('<?php echo esc_url($background_image); ?>')" <?php } ?>>
		<div class="container">
			<div class="row align-items-center">
				<div class="col-md-12">
					<div class="page-header-box">
						<h1><?php echo esc_html__( 'Page Not Found', 'inclub' ); ?></h1>
						<?php do_action('inclub_action_get_breadcrumb');		?>
					</div>
				</div>
			</div>
		</div>
	</div>
	
	<div class="error-page">
		<div class="container">
			<div class="row">
				<div class="col-md-12">
					<div class="error-page-image">
						<img src="<?php echo esc_url( $INCLUB_STORAGE['404_image'] ); ?>" alt="">
					</div>
					<div class="error-page-content">
						<div class="error-page-content-heading">
							<h2><?php echo esc_html__( 'Oops! Page Not Found', 'inclub' ); ?></h2>
						</div>
						<div class="error-page-content-body">
							<p><?php echo esc_html__( 'The page you are looking for does not exist', 'inclub' ); ?></p>
							<?php
								printf( '<a class="btn-default" href="%s">%s %s</a>', esc_url( home_url() ), __('Back To Home','inclub'), inclub_render_svg($INCLUB_STORAGE['read_more_icon']));
							?>
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>
</main>