Merged in feature/from-pantheon (pull request #16)

code from pantheon

* code from pantheon
This commit is contained in:
Tony Volpe
2024-01-10 17:03:02 +00:00
parent 054b4fffc9
commit 4eb982d7a8
16492 changed files with 3475854 additions and 0 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(); ?>