';
get_template_part( 'author','bio' );
echo'
'; //
endif;
if ( have_posts() ) :
//Start the loop.
while ( have_posts() ) : the_post();
/*
* Include the Post-Format-specific template for the content.
*/
get_template_part( 'content' );
// End the loop.
endwhile;
// If no content, include the "No posts found" template.
else :
echo '';
esc_html_e('Sorry No Posts Were Found','blogever');
echo '
';
endif;
blogever_paging_nav(); // blogever-pagination
?>