<?php
/**
 * Main fallback template (blog index / archives fallback).
 *
 * @package Iliya
 */

get_header();
?>

<div class="container mx-auto max-w-[1200px] py-12">
    <?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();
