WordPress Theme Development page-template_archive.php

Template: Archive

<article> 
                
    <div class="blog_list_container">

        <div class="archive-header">

            <h2>Posts for: </h2>

            <h3><?php the_archive_title(); ?></h3>

        </div>

        <!-- TODO: Paginate Blog List -->
                    
        <nav class="blog_home_pagination">
                        
            <?php //previous_posts_link();
                        
                //previous_posts_link( "label previous" );
            ?>

            <?php echo paginate_links(); ?>
                    
            <?php //next_posts_link(); ?> 

            <!-- <a href="home.php">Previous</a>
            <a href="home.php">1</a>
            2, ... <a href="">5</a>
            <a href="home.php">Next</a> -->

        </nav>
                    
        <ul>         

            <div class="post_list">  
                            

                <?php if ( have_posts() ) : ?>

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

                    <!-- Content that loops goes here --->
                    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li>

                    <?php endwhile; else : ?>

                    <!-- The loop ends at this point -->
                <?php endif; ?> 

            </div>

        </ul>

    </div>

</article>