HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/l2pbkn5l6xav/public_html/wp-content/themes/prime-business/full-width.php
<?php
/*
Template Name: Full-width layout
*/

get_header();
?>
<div class="ct-main-body">
<?php
    if( is_front_page() ) :
        get_template_part( 'template-parts/home/ct', 'slider' );
        get_template_part( 'template-parts/home/ct', 'introduction' );
        get_template_part( 'template-parts/home/ct', 'services' );
        get_template_part( 'template-parts/home/ct', 'team-members' );
        get_template_part( 'template-parts/home/ct', 'features' );
        get_template_part( 'template-parts/home/ct', 'testimonials' );
        get_template_part( 'template-parts/home/ct', 'editor' );

    else :
?>
        <?php
            $prime_business_cols = 'nine';
            if ( !is_active_sidebar( 'prime-business-page-sidebar' ) ) {
                $prime_business_cols = 'twelve';
            }
        ?>

        <div class="u-full-width">
            <div class="row">
                <div class="<?php echo esc_attr( $prime_business_cols ); ?> columns">
                    <?php
                        if ( have_posts() ) {

                            // Load posts loop.
                            while ( have_posts() ) {
                                the_post();
                                get_template_part( 'template-parts/content/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;
                            }

                        } else {

                            // If no content, include the "No posts found" template.
                            get_template_part( 'template-parts/content/content', 'none' );

                        }
                    ?>
                </div><!-- /.nine columns -->
                <?php get_sidebar(); ?>
            </div><!-- /.row -->
        </div><!-- /.container -->
    <?php endif; ?>
    </div><!-- /.ct-main-body -->
<?php
get_footer();