<?php
/* Template Name: Legal */
?>
<?php get_header(); ?>

	<main id="main-content">
		<!-- section -->
		<section class="wrapper">
			<?php
			if ( function_exists('yoast_breadcrumb') ) {
			yoast_breadcrumb('
			<p id="breadcrumbs">','</p>
			');
			}
			?>
			<h1><?php the_title(); ?></h1>

		<?php if (have_posts()): while (have_posts()) : the_post(); ?>

			<!-- article -->
			<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

				<?php the_content(); ?>

			</article>
			<!-- /article -->

		<?php endwhile; endif; ?>

		

		</section>
		<!-- /section -->
	</main>


<?php get_footer(); ?>
