HEX
Server: nginx/1.18.0
System: Linux vcwordpress 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64
User: root (0)
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: /var/www/vcstore.viitorcloud.co/wp-content/themes/vcmarketplace/page.php
<?php
/**
 * The template for displaying all pages
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site may use a
 * different template.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @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"><?php the_title(); ?></li>
					</ol>
				</nav>
				<p class="font-64 text-white mb-4"> <?php the_title(); ?></p>
			</div>
		</div>
	</div>
</section>

<section class="section-content py-80 pt-40">
	<div class="container">
		<main id="primary" class="site-main">

			<?php
			while ( have_posts() ) :
				the_post();

				the_content();

			endwhile; // End of the loop.
			?>

		</main><!-- #main -->
	</div>
</section>
<?php
get_sidebar();
get_footer();