HEX
Server: nginx/1.24.0
System: Linux 0c1023d6c65e 6.8.0-137-generic #137-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 17 20:28:23 UTC 2026 x86_64
User: root (0)
PHP: 8.3.33
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/themes/thegem-elementor/page-fullwidth.php
<?php

/**
 * Template Name: TheGem Full Width
 *
 * @package TheGem
 */

get_header(); ?>

<div id="main-content" class="main-content">

<?php
	$thegem_page_template_id = thegem_page_template();
	while ( have_posts() ) : the_post();
		if($thegem_page_template_id && defined('ELEMENTOR_VERSION')) : ?>
			<?php echo thegem_page_title(); ?>
			<div class="block-content">
				<div class="fullwidth-content">
					<div class="thegem-template-wrapper thegem-template-page thegem-template-<?php echo esc_attr($thegem_page_template_id); ?>">
						<?php
							$GLOBALS['thegem_template_type'] = 'page';
							echo \Elementor\Plugin::instance()->frontend->get_builder_content_for_display($thegem_page_template_id);
							unset($GLOBALS['thegem_template_type']);
						?>
					</div>
				</div><!-- .container -->
			</div><!-- .block-content -->
		<?php else :
			get_template_part( 'content', 'page-fullwidth' );
		endif;
	endwhile;
?>

</div><!-- #main-content -->

<?php
get_footer();