<?php get_header(); ?>
<div class="container">

<section class="category-posts">

  <?php
  $the_query = new WP_Query( array(
          'post_type'=>'post',
          'paged' => get_query_var('paged') ? get_query_var('paged') : 1)
  );
?>



		<?php
			the_post();
			the_content();
		?>
    

      <div class="page-pagination">
        <?php
        $big = 999999999; // need an unlikely integer
        echo paginate_links( array(
        'base' => str_replace( $big, '%#%', get_pagenum_link( $big ) ),
        'format' => '?paged=%#%',
        'current' => max( 1, get_query_var('paged') ),
        'total' => $the_query->max_num_pages
                    ) );
        ?>
      </div>
  <?php  wp_reset_postdata(); ?>
                      </section>
</div>

<?php get_footer(); ?>
