File: /var/www/html/wptrinityconsulting/wp-content/themes/finbuzz/single-finbuzz_team.php
<?php
/**
* @author RadiusTheme
* @since 1.0
* @version 1.0
*/
// Layout class
if ( FinbuzzTheme::$layout == 'full-width' ) {
$finbuzz_layout_class = 'col-sm-12 col-12';
}
else{
$finbuzz_layout_class = FinbuzzTheme_Helper::has_active_widget();
}
?>
<?php get_header(); ?>
<div id="primary" class="content-area">
<div class="container">
<div class="row">
<?php if ( FinbuzzTheme::$layout == 'left-sidebar' ) { get_sidebar(); } ?>
<div class="<?php echo esc_attr( $finbuzz_layout_class );?>">
<main id="main" class="site-main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content-single', 'team' );
endwhile;
?>
</main>
</div>
<?php if ( FinbuzzTheme::$layout == 'right-sidebar' ) { get_sidebar(); } ?>
</div>
</div>
</div>
<?php get_footer(); ?>