<?php
/**
 * Posts fallback.
 *
 * @package Foliora
 */

get_header();
?>
<section class="page-shell wrap">
	<?php if ( have_posts() ) : ?>
		<header class="page-shell__head" data-reveal>
			<p class="eyebrow">Journal</p>
			<h1>Notes from the reading chair</h1>
		</header>
		<div class="journal-list">
			<?php
			while ( have_posts() ) :
				the_post();
				?>
				<article <?php post_class( 'journal-card' ); ?> data-reveal>
					<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
					<?php the_excerpt(); ?>
				</article>
			<?php endwhile; ?>
		</div>
		<?php the_posts_pagination(); ?>
	<?php else : ?>
		<header class="page-shell__head" data-reveal>
			<p class="eyebrow">Journal</p>
			<h1>Nothing here yet</h1>
			<p class="lead">When there are notes to share, they will land in this quiet corner.</p>
		</header>
	<?php endif; ?>
</section>
<?php
get_footer();
