Modularización de GKACHELE SaaS

This commit is contained in:
gkachele
2026-01-17 11:40:17 +01:00
commit b6820848b8
1338 changed files with 339275 additions and 0 deletions

View 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();