/home/arranoyd/empl/wp-content/themes/sway/search.php
<?php
/**
 * The template for displaying Search Results pages.
 * @package sway
 * by KeyDesign
 */

 get_header(); ?>

 <?php
  $sticky_sidebar = $page_layout = $page_sidebar = '';

  $page_sidebar = sway_get_option( 'tek-search-sidebar' );

   if ( '' == $page_sidebar ) {
 		$page_sidebar = 0;
 	}

  if ( $page_sidebar ) {
    $page_layout = "use-sidebar";
  }

 	if ( sway_get_option( 'tek-search-sticky-sidebar' ) ) {
 		$sticky_sidebar = 'post-sticky-sidebar';
 	}
 ?>

<div id="posts-content" class="container" >
  <?php if ( $page_sidebar ) : ?>
    <div class="col-xs-12 col-sm-12 col-md-8 col-lg-8">
  <?php else : ?>
    <div class="col-xs-12 col-sm-12 col-md-8 col-lg-8 BlogFullWidth">
  <?php endif; ?>
    	<?php
    		if ( have_posts() ) :

    			while ( have_posts() ) : the_post();
    				get_template_part( 'core/templates/post/content', 'search' );
    			endwhile;

          /* Numeric posts pagination */
    			sway_numeric_posts_nav();
      ?>
    <?php
		  else :
        get_template_part( 'core/templates/post/content', 'none' );
      endif;
    ?>
    </div>
    <?php if ( $page_sidebar ) : ?>
      <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 <?php echo esc_attr( $sticky_sidebar ); ?>">
        <div class="right-sidebar">
  		     <?php get_sidebar(); ?>
        </div>
  		</div>
  	<?php endif; ?>
</div>

<?php get_footer(); ?>