'; /* Start the Loop */ while (have_posts()) : the_post(); // Get the post content get_template_part('template-parts/content', 'single'); // 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; // Action hook for any content placed after post comments do_action('amble_after_post_comments'); // Post navigation if (false === $amble_hide_post_navigation) { amble_post_pagination(); } endwhile; echo ''; break; case "classic-left": default: echo '
'; /* Start the Loop */ while (have_posts()) : the_post(); // Get the post content get_template_part('template-parts/content', 'single'); // 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; // Action hook for any content placed after post comments do_action('amble_after_post_comments'); // Post navigation if (false === $amble_hide_post_navigation) { amble_post_pagination(); } endwhile; echo '
'; // Get the sidebar get_sidebar(); } else : get_template_part('template-parts/content', 'none'); endif; // End } endif;