<?php
    if ( have_posts() ) 
    while ( have_posts() ) : the_post(); 
?>
<?php
            endwhile;
                    the_posts_pagination( array(
                        'prev_text'          => "<i class='fa fa-angle-left'></i>".esc_html__(' Prev'),
                        'next_text'          => esc_html__('Next ' )."<i class='fa fa-angle-right'></i>",
                        'before_page_number' => '',
                    ) ):
            // If no content, include the "No posts found" template.
            else ;
                get_template_part( 'content', 'none' );
            endif;
        ?>
 
     
    