D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
www
/
shahnitasanjay.store
/
wp-content
/
themes
/
bw-giftxtore
/
Filename :
404.php
back
Copy
<?php /** * The template for displaying 404 pages (not found) * * @package htvietnam */ $page_id = bzotech_get_option('bzotech_404_page'); if(!empty($page_id)){ $style = bzotech_get_option('bzotech_404_page_style'); if($style == 'full-width') { get_header('none'); echo Bzotech_Template::get_vc_pagecontent($page_id); get_footer('none'); } else{ get_header(); ?> <div id="main-content" class="main-page-default"> <div class="bzotech-container"> <?php echo Bzotech_Template::get_vc_pagecontent($page_id);?> </div> </div> <?php get_footer(); } } else{ get_header(); ?> <div id="main-content" class="main-page-default"> <div class="bzotech-container"> <div class="content-default-404"> <div class="bzotech-row"> <div class="bzotech-col-md-12"> <div class="icon-404 text-center"> <h2 class="title120 font-bold main-color"><?php esc_html_e("404",'bw-giftxtore'); ?></h2> <h3 class="text title48 font-semibold font-title"><?php esc_html_e("Oops, you got the wrong result!",'bw-giftxtore')?></h3> <p class="desc title20 font-medium"><?php esc_html_e("The page you requested could not be found.",'bw-giftxtore')?></p> <a href="<?php echo esc_url(home_url('/'))?>" class="elbzotech-bt-default"><?php esc_html_e("Back to home",'bw-giftxtore')?></a> </div> </div> </div> </div> </div> </div> <?php get_footer(); }