HEX
Server: LiteSpeed
System: Linux s787.bom1.mysecurecloudhost.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
User: mobilech (5348)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/themes/ftech/single.php
<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package ftech
 */

get_header();
$ftechPostClass = '';
if (is_active_sidebar('sidebar-1')) {
	$ftechPostClass = 'col-xxl-8 col-xl-8 col-lg-8';
} else {
	$ftechPostClass = 'col-lg-10 offset-lg-1';
}
?>

<div class="blog-grid-area pt-120 pb-70 fix">
		<div class="container ftc-container-1">
			<div class="row">
			<div class="<?php echo esc_attr($ftechPostClass); ?>">
				<div class="blog-list-item-wrap mb-50">
					<?php ftech_single_post_loop(); ?>
				</div>
			</div>
			<!-- Sidebar Side -->
			<?php get_sidebar(); ?>
		</div>
	</div>
</div>

<?php
get_footer();