<?php
/**
 * Static pages — Our Story, policies, contact.
 *
 * @package Foliora
 */

get_header();
?>
<?php
while ( have_posts() ) :
	the_post();
	?>
	<article class="page-shell wrap" <?php post_class(); ?>>
		<header class="page-shell__head" data-reveal>
			<p class="eyebrow">Foliora</p>
			<h1><?php the_title(); ?></h1>
		</header>
		<div class="page-shell__body" data-reveal>
			<?php the_content(); ?>
		</div>
	</article>
	<?php
endwhile;
get_footer();
