File: /var/www/vcstore.viitorcloud.co/wp-content/themes/vcmarketplace/404.php
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package vcmarketplace
*/
get_header();
?>
<section class="home-banner position-relative">
<div class="position-absolute top-0 start-0 w-100 h-100 banner-img">
<img src="<?php echo site_url(); ?>/wp-content/uploads/2024/06/home-banner.webp" alt="games" width="100%" height="100%">
</div>
<div class="container h-100">
<div class="row align-items-center h-100 banner-content">
<div class="col-12 col-md-6">
<nav class="mb-2" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item font-18">
<a href="https://viitorcloud.com/">Home</a>
</li>
<li class="breadcrumb-item font-18 active" aria-current="page">
<a href="<?php echo site_url();?>">Marketplace</a>
</li>
<li class="breadcrumb-item font-18 active" aria-current="page">404</li>
</ol>
</nav>
<p class="font-64 text-white mb-4"> 404 page not found</p>
<!-- <p class="font-20 text-white">
Checkout short description
</p> -->
</div>
</div>
</div>
</section>
<section class="error-404 not-found py-80">
<div class="container">
<h1 class="page-title text-center">Oops! page can’t be found.</h1>
<div class="page-content">
<p class="text-center">
It looks like nothing was found at this location.
</p>
<?php
/*
get_search_form();
the_widget( 'WP_Widget_Recent_Posts' );
?>
<div class="widget widget_categories">
<h2 class="widget-title"><?php esc_html_e( 'Most Used Categories', 'vcmarketplace' ); ?></h2>
<ul>
<?php
wp_list_categories(
array(
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'title_li' => '',
'number' => 10,
)
);
?>
</ul>
</div><!-- .widget -->
<?php
$vcmarketplace_archive_content = '<p>' . sprintf( esc_html__( 'Try looking in the monthly archives. %1$s', 'vcmarketplace' ), convert_smilies( ':)' ) ) . '</p>';
the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$vcmarketplace_archive_content" );
the_widget( 'WP_Widget_Tag_Cloud' );
*/
?>
</div><!-- .page-content -->
</div>
</section><!-- .error-404 -->
<style>
.home-banner {
height: 444px;
}
</style>
<?php
get_footer();