<?php get_header(); ?>
<main class="grey-background">
<div class="container">
<h1 class="archive-title"><?php the_archive_title(); ?></h1>
<div class="grid">
<?php while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>">
<a href="<?php echo get_permalink(); ?>" target="_blank">
<?php if ( has_post_thumbnail() ) { ?>
<div class="article-img"><?php the_post_thumbnail( 'medium' ); ?></div>
<?php } ?>
<div class="post-info">
<p><time class="post-date"><?php echo get_the_date(); ?></time></p>
<h3><?php the_title(); ?></h3>
</div>
</a>
</article>
<?php endwhile; ?>
</div>
<?php echo get_the_posts_pagination( array(
'show_all' => false,
'mid_size' => 2,
'prev_text' => '',
'next_text' => ''
) ); ?>
</div>
<?php get_footer(); ?>