HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux srvntsweb01 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64
User: admntserv (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/ethnikamauricia.com/wp-content/themes/writee/templates/no-sidebar.php
<?php 
/*
Template Name: No Sidebar
*/
/******************************************/
## Writee templates
## Content page without sidebar.
/******************************************/



get_header();
?>
	<section class="site-main ">
        <div class="site-container">
            <div class="site-row">
				<div class="site-content with-no-sidebar" id="site-content" role="main">
					<?php 
						if(have_posts()):
							while(have_posts()): the_post();
								get_template_part('inc/theme/views/content-page'); 
							endwhile;
						else:
							get_template_part('inc/theme/views/content-none'); 
						endif; 
						?>
						
						<?php 
						// If comments are open or we have at least one comment, load up the comment template.
						if ( comments_open() || get_comments_number() ) :
							comments_template('', true );
						endif;
					?>
						
				</div>
			</div>
		</div>
	</section>
<?php 
get_footer();
?>