22 lines
363 B
PHP
22 lines
363 B
PHP
<?php
|
|
/*
|
|
Template name: Page - Full Width
|
|
*/
|
|
get_header(); ?>
|
|
|
|
<?php do_action( 'flatsome_before_page' ); ?>
|
|
|
|
<div id="content" role="main" class="content-area">
|
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
<?php the_content(); ?>
|
|
|
|
<?php endwhile; // end of the loop. ?>
|
|
|
|
</div>
|
|
|
|
<?php do_action( 'flatsome_after_page' ); ?>
|
|
|
|
<?php get_footer(); ?>
|