<?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">
      <?php
      if ( have_posts() ) :
          while ( have_posts() ) : the_post(); ?>
          <div class="post-item">
          <?php the_post_thumbnail('post-thumbnail-size'); ?>
          <h2><a class="post-title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
          <p><?php the_excerpt(); ?></p>
          <div class="post-data">
            <div class="publish-date">
              <?php the_time('<p>d</p> '); ?>
              <?php the_time(' M '); ?>
              <?php the_time('Y '); ?>
            </div>
            <div class="post-review">
              <div class="post-cat"><?php the_category(); ?></div>
              <div class="post-view">
                <i class="fas fa-eye"></i>
                <span><?= gt_get_post_view(); ?></span>
              </div>
            </div>
          </div>
          </div>
          <?php
          endwhile;
      endif;
      ?>
</div>
</section>
<div class="page-pagination">
  <?php echo paginate_links(array(
    'prev_text'          => __( 'قبلی' ),
    'next_text'          => __( 'بعدی' ),
  )); ?>
</div>
  </div>
  <?php get_sidebar(); ?>
</div>

<style>
  .block-archive-post {display: grid;grid-template-columns: 1fr;column-gap: 20px;}
</style>

<?php get_footer(); ?>
