<?php
/**
 * Лента записей.
 *
 * @package News_Almaty
 */

get_header();
?>
<div class="container archive-page">
	<?php news_almaty_breadcrumbs(); ?>
	<header class="archive-header">
		<span class="section-heading__kicker"><?php esc_html_e( 'Лента', 'news-almaty' ); ?></span>
		<h1>
			<?php
			$posts_page_id = get_option( 'page_for_posts' );
			echo esc_html( $posts_page_id ? get_the_title( $posts_page_id ) : __( 'Все новости', 'news-almaty' ) );
			?>
		</h1>
		<p><?php esc_html_e( 'Главные события Алматы и Казахстана в хронологическом порядке.', 'news-almaty' ); ?></p>
	</header>

	<?php if ( have_posts() ) : ?>
		<div class="archive-grid">
			<?php while ( have_posts() ) : the_post(); ?>
				<?php get_template_part( 'template-parts/card' ); ?>
			<?php endwhile; ?>
		</div>
		<?php the_posts_pagination( array( 'mid_size' => 1, 'prev_text' => '←', 'next_text' => '→' ) ); ?>
	<?php else : ?>
		<?php get_template_part( 'template-parts/content', 'none' ); ?>
	<?php endif; ?>
</div>
<?php get_footer(); ?>
