File: /www/wwwroot/aiwellbore.com/wp-content/updraft/themes-old/study-education-pro/single-team.php
<?php
/**
* The Template for displaying all single posts.
*
* @package Study Education Pro
*/
get_header();
$single_layout_theme_options = get_theme_mod('single_layout_theme_options', 'singleright');
?>
<style>
<?php
if( $single_layout_theme_options == 'singleleft' ){
echo '#sidebar { float:left !important; }';
}
?>
</style>
<div class="content-area">
<div class="middle-align">
<div class="site-main <?php echo $single_layout_theme_options; ?>" id="sitemain">
<?php while ( have_posts() ) : the_post(); ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php the_post_thumbnail('medium', array('class' => 'alignleft') ); ?>
<?php the_content(); ?>
<?php endwhile; // end of the loop. ?>
</div>
<?php
if( $single_layout_theme_options != 'sitefull' && $single_layout_theme_options != 'nosidebar' ){
get_sidebar('blog');
} ?>
<div class="clear"></div>
</div>
</div>
<?php get_footer(); ?>