HEX
Server: Apache
System: Linux webm006.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/studiomilighetti/wp-content/themes/domik/page.php
<?php
/* banner-php */

$sb_w = domik_get_option('blog-sidebar-width') ? domik_get_option('blog-sidebar-width') : 3;
get_header();
get_header('inner');

?>
<?php domik_inner_head_page_single(); ?>

<div class="domik_container domik-page">
    <section>
        <div class="row">
        	<?php if(domik_get_option('blog_layout')==='left_sidebar'):?>
				<div class="col-md-<?php echo esc_attr($sb_w );?> page-sidebar-column sidebar-left">
					<div class="blog-sidebar">
	        			<?php get_sidebar( 'page' ); ?>
	        		</div>
				</div>
			<?php endif;?>
			<?php if(domik_get_option('blog_layout')==='fullwidth'):?>
			<div class="col-md-12 nosidebar page-content-column">
			<?php else:?>
			<div class="col-md-<?php echo (12 - $sb_w);?> hassidebar page-content-column">
			<?php endif;?>
				<?php if(have_posts()) : 
					?>
					<?php while(have_posts()) : the_post(); ?>
						
						<?php get_template_part( 'template-parts/post/content', 'page'); ?>

						<?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();
						endif;
						?>
					
					<?php endwhile; ?>

				<?php endif; ?> 
			
        	</div>
        	<?php if(domik_get_option('blog_layout')==='right_sidebar'):?>
			<div class="col-md-<?php echo esc_attr($sb_w );?> page-sidebar-column sidebar-right">
        		<div class="blog-sidebar">
        			<?php get_sidebar( 'page' ); ?>
        		</div>
        	</div>
			<?php endif;?>
        	
        </div>
    </section>
    
</div>

<?php
get_footer('inner');
get_footer(); 
?>