Files
medicalalert-web-reloaded/wp/wp-content/themes/thbusiness/layouts/business.php
Tony Volpe 4eb982d7a8 Merged in feature/from-pantheon (pull request #16)
code from pantheon

* code from pantheon
2024-01-10 17:03:02 +00:00

55 lines
1.5 KiB
PHP

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