33 lines
601 B
PHP
33 lines
601 B
PHP
<?php
|
|
/**
|
|
* Template Name: Page Builder Template
|
|
*
|
|
* Displays the Page Builder Template provided via the theme.
|
|
* Suitable for page builder plugins
|
|
*
|
|
* @package ThemeGrill
|
|
* @subpackage ColorMag
|
|
* @since ColorMag 1.2.3
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<?php do_action( 'colormag_before_body_content' ); ?>
|
|
|
|
<div id="primary">
|
|
<div id="content" class="pagebuilder-content clearfix">
|
|
<?php
|
|
while ( have_posts() ) : the_post();
|
|
|
|
the_content();
|
|
|
|
endwhile;
|
|
?>
|
|
|
|
</div><!-- #content -->
|
|
</div><!-- #primary -->
|
|
|
|
<?php do_action( 'colormag_after_body_content' ); ?>
|
|
|
|
<?php get_footer(); ?>
|