Modularización de GKACHELE SaaS
This commit is contained in:
28
wp-content/themes/abiz/pagebuilder.php
Normal file
28
wp-content/themes/abiz/pagebuilder.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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();
|
||||
Reference in New Issue
Block a user