rebase from live enviornment

This commit is contained in:
Rachit Bhargava
2024-01-09 22:14:20 -05:00
parent ff0b49a046
commit 3a22fcaa4a
15968 changed files with 2344674 additions and 45234 deletions

View File

@@ -0,0 +1,54 @@
<?php
/**
* Template Name: Business Template
*
* Displays the Business Template of the theme.
*
* @package thbusiness
*/
get_header(); ?>
</div><!-- .row -->
</div><!-- .container -->
<?php
if( is_active_sidebar( 'thbusiness-business-top-sidebar' ) ) {
// Calling the business page top section sidebar if it exists.
if ( !dynamic_sidebar( 'thbusiness-business-top-sidebar' ) ):
endif;
} ?>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<?php
if( is_active_sidebar( 'thbusiness-business-left-sidebar' ) ) {
// Calling the business page left section sidebar if it exists.
if ( !dynamic_sidebar( 'thbusiness-business-left-sidebar' ) ):
endif;
} ?>
</div><!-- col-xs-12 col-sm-6 col-md-6 col-lg-6 -->
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<?php
if( is_active_sidebar( 'thbusiness-business-right-sidebar' ) ) {
// Calling the business page right section sidebar if it exists.
if ( !dynamic_sidebar( 'thbusiness-business-right-sidebar' ) ):
endif;
} ?>
</div><!-- col-xs-12 col-sm-6 col-md-6 col-lg-6 -->
</div><!-- .row -->
</div><!-- .container -->
<?php
if( is_active_sidebar( 'thbusiness-business-bottom-sidebar' ) ) {
// Calling the business page bottom sidebar if it exists.
if ( !dynamic_sidebar( 'thbusiness-business-bottom-sidebar' ) ):
endif;
} ?>
<div class="container">
<div class="row">
<?php get_footer(); ?>