| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/lukasreistetter.sk/web/wp-content/themes/inbio/ |
Upload File : |
<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package inbio
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
get_header();
$rainbow = RAINBOW_THEME_PT_PREFIX;
if (is_post_type_archive("{$rainbow}_projects") || is_tax("{$rainbow}_projects_category")) {
get_template_part('template-parts/archive', 'projects');
return;
}
$rainbow_options = Rainbow_Helper::rainbow_get_options();
$rainbow_blog_sidebar_class = ($rainbow_options['rainbow_blog_sidebar'] === 'no') || !is_active_sidebar('sidebar-1') ? 'col-lg-12 inbio-post-wrapper' : 'col-lg-8 inbio-post-wrapper';
?>
<!-- Start Blog Area -->
<div class="rainbow-blog-area rn-section-gap">
<div class="container">
<div class="row row--40">
<?php if (is_active_sidebar('sidebar-1') && $rainbow_options['rainbow_blog_sidebar'] == 'left') { ?>
<div class="col-lg-4 col-xl-4 ">
<aside class="rainbow-sidebar-area">
<?php dynamic_sidebar(); ?>
</aside>
</div>
<?php } ?>
<div class="<?php echo esc_attr($rainbow_blog_sidebar_class); ?>">
<?php
if (have_posts()) :
/* Start the Loop */
while (have_posts()) :
the_post();
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part('template-parts/post/content', get_post_format());
endwhile;
rainbow_blog_pagination();
else :
get_template_part('template-parts/content', 'none');
endif;
?>
</div>
<?php if (is_active_sidebar('sidebar-1') && $rainbow_options['rainbow_blog_sidebar'] == 'right') { ?>
<div class="col-lg-4 col-xl-4">
<aside class="rainbow-sidebar-area">
<?php dynamic_sidebar(); ?>
</aside>
</div>
<?php } ?>
</div>
</div>
</div><!-- End Blog Area -->
<?php
get_footer();