<?php
/**
* Template Name: Full Width Page With Header
*/
get_header(); // This adds the header bar with your menu
?>
<main id="primary" class="site-main">
<?php
while ( have_posts() ) :
the_post();
the_content(); // This lets you use Gutenberg blocks normally
endwhile;
?>
</main>
<?php get_footer(); // This adds your footer ?>