'; //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 { echo '
'; get_template_part( 'parts/content-none' ); echo '
'; } //Display sidebar if(is_active_sidebar('home_page_sidebar')) { echo ''; } echo '
'; if(paginate_links()) { echo ''; } get_footer(); ?>