HEX
Server: Apache
System: Linux server-674799.igrow.ws 5.14.0-611.27.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 4 04:40:11 EST 2026 x86_64
User: elrashedytravel (1025)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/elrashedytravel/public_html/wp-content/themes/newsexo/page-templates/fullwidth.php
<?php /** * Template Name: Full Width Page
 *
 * 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.
 *
 * @package newsexo
 */

get_header();
get_template_part('template-parts/site','breadcrumb');
$page_container_layout = get_theme_mod('newsexo_default_page_container_size', 'container-full');
?>
<section class="blog-grid-view-post">
	<div class="<?php echo $page_container_layout; ?>">
		<div class="row">
			<div class="col-lg-12 col-md-12 col-sm-12">
				<?php
				while ( have_posts() ) : the_post();
						// Include the page
						get_template_part( 'template-parts/content', 'page' );
						comments_template( '', true ); // show comments 
				    endwhile;
					newsexo_edit_link();
				?>
			</div>
					
		</div>
	</div>
</section>
<?php
get_footer();