WordPress Theme Development page-template_author.php

Template: Author

<article> 
                
    <div class="blog_list_container">

        <!-- TODO:  implement some post list pagination -->
        <nav class="blog_home_pagination">

                                    
        <?php //previous_posts_link(); ?>

        <?php echo paginate_links( 

            array (
                                
                "prev_next" => true,
                "prev_text" => "Prev Posts",
                "next_text" => "Next Posts"            
                )
            ); 
        ?>

        <?php //next_posts_link(); ?>   

        </nav>


    </div>       

    <div class="post_list"> 

        <?php if( have_posts() ): while( have_posts() ): the_post(); ?> 

            <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>

            <p><?php the_excerpt(); ?></p>

        <?php endwhile; else : ?>

                        
        <?php endif; ?>

        <nav class="authors-list">

            <h3>Other Authors</h3>

            <?php wp_list_authors(); ?>

        </nav>

    </div>

</article>