HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux acmehomecare 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: www-data (33)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wp-content/themes/exertio/index.php
<?php
get_header();
$actionbBar = fl_framework_get_options('action_bar');
$actionbar_space = '';
if(isset($actionbBar) && $actionbBar == 1)
{
	$actionbar_space = 'actionbar_space';
}
?>
<section class="fr-latest-blog bg-gray-light-color exertia-padding <?php echo esc_attr($actionbar_space); ?>">
  <div class="container">
    <div class="row">
		<?php
        $sidebar_opt = fl_framework_get_options('blog_sidebar');
        $blog_type	=	'col-lg-8 col-xl-8 col-xs-12 col-md-12 col-sm-12';
        if( isset( $sidebar_opt ) && $sidebar_opt == 'no-sidebar' )
        {
            $blog_type	=	'col-lg-12 col-xl-12 col-xs-12 col-md-12 col-sm-12';	
        }
        else
        {
            $blog_type	=	'col-lg-8 col-xl-8 col-xs-12 col-md-12 col-sm-12';	
        }
        
        if(isset($sidebar_opt) && $sidebar_opt == 'left')
        {
             get_sidebar();
        }
		if ( !is_active_sidebar( 'exertia-blog-widget' ) ) {
			$blog_type	=	'col-lg-12 col-xl-12 col-xs-12 col-md-12 col-sm-12';	
		}
        ?>
        
        <div class="<?php echo esc_attr($blog_type); ?> ">
            <div class="row grid">
                <?php get_template_part( 'template-parts/blog/blog','loop' ); ?>  
            </div>
			<?php
				$blog_pagination = '';
				$blog_pagination = fl_blog_pagination();
				if(isset($blog_pagination) && $blog_pagination != '' )
				{
					?>
						<div class="row">
							<div class="col-xl-12 col-xs-12 col-sm-12">
								<div class="fr-latest-pagination">
								  <?php fl_blog_pagination(); ?>
								</div>
							</div>
						</div>
					<?php
				}
			?>
        </div>
        
        <?php
        if(isset($sidebar_opt) && $sidebar_opt == 'right')
        {
            get_sidebar();
        }
		else if(isset($sidebar_opt) && $sidebar_opt == '' && is_active_sidebar( 'exertia-blog-widget' ))
		{
			get_sidebar();
		}
        ?>
    </div>
  </div>
</section>
<?php
if(isset($exertio_theme_options['footer_type'])) { $footer_type  = $exertio_theme_options['footer_type']; } else { $footer_type  = 0; }
if($footer_type  ==  1) {
    if($footer_type  ==  1 && in_array('elementor-pro/elementor-pro.php', apply_filters('active_plugins', get_option('active_plugins'))))
    {
        elementor_theme_do_location('footer');
        get_footer();
    }else{
        get_footer();
    }
}

else {
    get_template_part('footer');
}
?>