<?php /* Template Name: Fullwidth */
esc_html__( 'Fullwidth', 'beautyspot' ); ?>
<?php get_header(); ?>
<?php // Page header
get_template_part( 'template-parts/page-header' ); ?>
<!-- CORE COLUMNS : begin -->
<div class="core__columns core__columns--fullwidth">
<div class="core__columns-inner">
<!-- MAIN : begin -->
<main id="main" class="main--fullwidth">
<div class="main__inner">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div <?php post_class(); ?>>
<?php get_template_part( 'template-parts/page', 'content' ); ?>
</div>
<?php endwhile; endif; ?>
</div>
</main>
<!-- MAIN : end -->
</div>
</div>
<!-- CORE COLUMNS : end -->
<?php get_footer(); ?> |