<?php
/*
 * Template Name: Archive Template
 */

get_header( 'full-width' ); ?>

<section id="main">
    <div class="row">
        <div id="content" class="site-content col-md-12" role="main">
            <div class="archive-wrap">
                <div class="row">
                    <div class="col-md-4">
                        <h3><?php _e('Latest Post','shapebootstrap'); ?></h3>
                        <?php global $post; ?>
                        <?php $latest_post = get_posts(array('post_per_page' => 10, 'post_type' => 'post'));
                        if(count($latest_post)){ ?>
                        <ul class="latest-post">
                            <?php foreach ($latest_post as $post) {
                                setup_postdata( $post ); 
                            ?>
                            <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
                        
                            <?php } ?>
                        </ul>
                        <?php
                            }
                            wp_reset_postdata();
                        ?>
                    </div>
                    <div class="col-md-4">
                        <h3><?php _e('Archive by Monthly', 'shapebootstrap');?></h3>
                        <ul class="archive-month">
                            <?php wp_get_archives(array( 'type' => 'monthly')); ?>
                        </ul>
                    </div>
                    <div class="col-md-4">
                        <h3><?php _e('Archive by Categories','shapebootstrap'); ?></h3>
                        <ul class="archive-cats">
                            <?php wp_list_categories(array( 'title_li' =>'' )); ?>
                        </ul>
                    </div>
                </div>
            </div>
        </div> <!-- #content -->
    </div> <!-- .row -->
</section> <!-- #main -->

</div><!-- .col-md-12 -->

<?php get_footer();