<?php get_header(); ?>
<div class="category-title">
  <div class="container">
  <h1><?php echo get_the_archive_title(); ?><span></span></h1>
  </div>
</div>
<div class="container">
  <div class="single-content">
<section class="category-posts">
<div class="block-archive-post" style="grid-template-columns: 1fr 1fr;">
      <?php
      if ( have_posts() ) :
          while ( have_posts() ) : the_post(); ?>
          <?php
          global $parsa_opt;
            $post_blog_template = $parsa_opt['post-style-template'];
             get_template_part( "template/posts-style/$post_blog_template" );
          ?>
          <?php
          endwhile;
      endif;
      ?>
</div>
</section>
<div class="page-pagination">
  <?php echo paginate_links(array(
    'prev_text'          => __( 'قبلی' ),
    'next_text'          => __( 'بعدی' ),
  )); ?>
</div>


  </div>
  <?php get_sidebar(); ?>
</div>

<?php get_footer(); ?>
