';
do_action( 'edublink_before_content' );
echo '
';
echo '';
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
// 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;
endwhile; // End of the loop.
echo '';
echo '
';
$page_layout = get_post_meta( get_the_ID(), 'edublink_page_layout_type', true );
$content_type = get_post_meta( get_the_ID(), 'edublink_page_content_type', true );
if ( 'boxed' === $page_layout && 'no-sidebar' !== $content_type ) :
get_sidebar();
endif;
do_action( 'edublink_after_content' );
echo '';
get_footer();