'; //Page title echo '

'; printf( __( 'Search Results for: %s', 'blesk' ), esc_html( get_search_query())); echo '

'; //Do the markup portion $content_portion = ''; if(!have_posts() or !is_active_sidebar('home_page_sidebar')) { $content_portion = ' style="width: 100%; float: none; padding-left: 0;"'; } //Check if posts exists if ( have_posts() ) { //Echo posts wrapper echo '
'; //Loop posts while ( have_posts() ) : the_post(); get_template_part( 'parts/content' ); endwhile; echo '
'; } else { get_template_part( 'parts/content-none' ); } //Display sidebar if(is_active_sidebar('home_page_sidebar')) { echo ''; } echo '
'; if(paginate_links()) { echo ''; } get_footer(); ?>