/home/nbcgowuy/kdosheleads.com/wp-content/themes/marketo/search.php
<?php
/**
 * search.php
 *
 * The template for displaying search results.
 */
get_header();
get_template_part( 'template-parts/header/content', 'blog-header' );
$sidebar = marketo_option('blog_sidebar', marketo_defaults('blog_sidebar'));
$column = ($sidebar == 1 || !is_active_sidebar('sidebar-1')) ? 'col-md-12' : 'col-lg-8 col-md-12 col-sm-12';
?>
<div class="blog xs-section-padding">
    <div class="main-content">
        <div class="container">
            <div class="row">
                <?php
                if($sidebar == 2){
                    get_sidebar();
                }
                ?>
                <div class="<?php echo esc_attr($column); ?>">
                    <?php
                    if ( have_posts() ) :
                        while ( have_posts() ) : the_post();
                            get_template_part( 'template-parts/post/content', get_post_format() );
                        endwhile;
                        marketo_paging_nav();
                    else :
                        get_template_part( 'template-parts/post/content', 'none' );
                    endif;
                    ?>
                </div> <!-- end main-content -->

                <?php
                if($sidebar == 3){
                    get_sidebar();
                }
                ?>
            </div>
        </div>
    </div>
</div>
<?php get_footer(); ?>