<?php
/**
 * Single page.
 *
 * @package Iliya
 */

get_header();
?>

<div class="container mx-auto max-w-[820px] py-12">
    <?php
    while (have_posts()) :
        the_post();
        ?>
        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
            <header class="mb-8">
                <h1 class="text-3xl font-bold text-dark font-dana"><?php the_title(); ?></h1>
            </header>

            <?php if (has_post_thumbnail()) : ?>
                <div class="mb-8">
                    <?php the_post_thumbnail('large', ['class' => 'w-full']); ?>
                </div>
            <?php endif; ?>

            <div class="prose-iliya">
                <?php
                the_content();
                wp_link_pages([
                    'before' => '<div class="mt-6 flex gap-2">',
                    'after'  => '</div>',
                ]);
                ?>
            </div>
        </article>

        <?php
        if (comments_open() || get_comments_number()) {
            comments_template();
        }
        ?>
        <?php
    endwhile;
    ?>
</div>

<?php
get_footer();
