Updated for public server.

This commit is contained in:
2025-11-25 00:04:05 +00:00
parent d6e9d316bc
commit 70ec2ce486
267 changed files with 100271 additions and 30 deletions

View File

@@ -0,0 +1,10 @@
<?php
/**
Template Name: Frontpage
*/
get_header();
do_action( 'Fable_Extra_Shopire_frontpage', false);
get_footer(); ?>

View File

@@ -0,0 +1,24 @@
<?php
/**
Template Name: Fullwidth Page
**/
get_header();
?>
<section class="wf-py-default">
<div class="wf-container">
<div class="wf-row wf-g-5">
<div class="wf-col-lg-12 wf-col-md-12 wf-col-12 wow fadeInUp">
<?php
the_post(); the_content();
if( $post->comment_status == 'open' ) {
comments_template( '', true ); // show comments
}
?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>

View File

@@ -0,0 +1,18 @@
<?php
/**
Template Name: Builder Page
**/
get_header();
?>
<section id="page-builder" class="theme-builder">
<?php
the_post(); the_content();
if( $post->comment_status == 'open' ) {
comments_template( '', true ); // show comments
}
?>
</section>
<?php get_footer(); ?>