<?php
/**
 * Archive (category, tag, date, author).
 *
 * @package Iliya
 */

get_header();
?>

<div class="container mx-auto max-w-[1200px] py-12">
    <header class="mb-10">
        <h1 class="text-3xl font-bold text-dark font-dana"><?php the_archive_title(); ?></h1>
        <?php
        $desc = get_the_archive_description();
        if ($desc) {
            echo '<div class="mt-3 text-muted">' . wp_kses_post($desc) . '</div>';
        }
        ?>
    </header>

    <?php if (have_posts()) : ?>
        <div class="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
            <?php
            while (have_posts()) :
                the_post();
                get_template_part('template-parts/post-card');
            endwhile;
            ?>
        </div>

        <div class="mt-12">
            <?php the_posts_pagination([
                'mid_size'  => 1,
                'prev_text' => __('قبلی', 'iliya'),
                'next_text' => __('بعدی', 'iliya'),
            ]); ?>
        </div>
    <?php else : ?>
        <p class="py-20 text-center text-muted"><?php esc_html_e('مطلبی یافت نشد.', 'iliya'); ?></p>
    <?php endif; ?>
</div>

<?php
get_footer();
