HEX
Server: Microsoft-IIS/10.0
System: Windows NT WIN8095 10.0 build 20348 (Windows Server 2016) AMD64
User: kytoffice-001 (0)
PHP: 7.4.30
Disabled: exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,show_source
Upload Files
File: h:/root/home/kytoffice-001/www/expresstinou/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();