28 lines
584 B
PHP
28 lines
584 B
PHP
<?php
|
|
/**
|
|
*
|
|
* Template Name: Builder Page
|
|
*
|
|
* This is the template that displays all pages by default.
|
|
* Please note that this is the WordPress construct of pages
|
|
* and that other 'pages' on your WordPress site may use a
|
|
* different template.
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
*
|
|
* @package Abiz
|
|
*/
|
|
get_header();
|
|
?>
|
|
<section id="page-builder" class="st-py-default theme-builder">
|
|
<div class="container">
|
|
<?php
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
the_content();
|
|
endwhile;
|
|
?>
|
|
</div>
|
|
</section>
|
|
<?php
|
|
get_footer();
|