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/pianob/wp-content/themes/zk-monaco/page-templates/left-sidebar.php
<?php
/**
 * Template Name: Left Sidebar
 *
 * @package ZookaStudio
 * @subpackage Monaco
 * @since 1.0.0
 * @author Fox
 */
if(is_active_sidebar('sidebar-1')){
    $cls = 'col-xs-12 col-sm-9 col-md-8 col-lg-8';
} else {
    $cls = 'col-xs-12 col-sm-12 col-md-12 col-lg-12';
}
get_header(); ?>
<div id="page-left-sidebar">
    <div class="container">
        <div class="row">
            <?php if(is_active_sidebar('sidebar-1')){ ?>
            <div id="page-sidebar" class="col-xs-12 col-sm-3 col-md-4 col-lg-4">
                <?php get_sidebar(); ?>
            </div><!-- #page-sidebar -->
            <?php } ?>
            <div id="primary" class="<?php echo esc_attr($cls); ?>">
                <div id="content" role="main">

                   <?php
                        // Start the loop.
                        while ( have_posts() ) : the_post();

                            // Include the page content template.
                            get_template_part( 'page-templates/content', 'page' );

                            // 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;

                        // End the loop.
                        endwhile;
                        ?>

                </div><!-- #content -->
            </div><!-- #primary -->
        </div>
	</div><!-- #page-left-sidebar -->
</div>
<?php get_footer(); ?>