<?php
/**
 * Template Name: Full Width 
 */
?>
<?php get_header(); ?>
<div class="wrap">
	<?php do_action( 'wptq_before_content' ); ?>
	<div id="primary" class="content-area">
	     <main id="main" class="site-main" role="main">
			<?php
			if ( have_posts() ) :
				while ( have_posts() ) : the_post();
                                     the_content();
				endwhile;
			endif;
			?>
	     </main>
	</div>
</div>
<?php get_footer(); ?>