hello
Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : chryzalihi ( 621211) PHP Version : 8.3.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/chryzalihi/www/wp-contentOLD/themes/longevity/ |
<?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.
*
* Learn more: {@link https://codex.wordpress.org/Template_Hierarchy}
*
* @package Longevity
*
*/
get_header(); ?>
<div class="container">
<?php get_sidebar( 'breadcrumbs' ); ?>
<div class="row">
<?php
$blogstyle = esc_attr(get_theme_mod( 'blog_style', 'blog-lg-right' ) );
switch ($blogstyle) {
// Blog with large featured image and a right sidebar
case "blog-lg-right" :
echo '<div class="col-md-9"><div id="primary" class="content-area"><main id="main" class="site-main" itemprop="mainContentOfPage">';
get_template_part( 'loop' );
echo '</main></div></div><div class="col-md-3">';
get_sidebar( 'right' );
echo '</div>';
break;
// Blog with large featured image and a left sidebar
case "blog-lg-left" :
echo '<div class="col-md-9 col-md-push-3"><div id="primary" class="content-area"><main id="main" class="site-main" itemprop="mainContentOfPage">';
get_template_part( 'loop' );
echo '</main></div></div><div class="col-md-3 col-md-pull-9">';
get_sidebar( 'left' );
echo '</div>';
break;
// Blog with small featured image and a right sidebar
case "blog-sm-right" :
echo '<div class="col-md-9"><div id="primary" class="content-area"><main id="main" class="site-main blog-small-right" itemprop="mainContentOfPage">';
get_template_part( 'loop' );
echo '</main></div></div><div class="col-md-3">';
get_sidebar( 'right' );
echo '</div>';
break;
// Blog with small featured image and a left sidebar
case "blog-sm-left" :
echo '<div class="col-md-9 col-md-push-3"><div id="primary" class="content-area"><main id="main" class="site-main blog-small-left" itemprop="mainContentOfPage">';
get_template_part( 'loop' );
echo '</main></div></div><div class="col-md-3 col-md-pull-9">';
get_sidebar( 'left' );
echo '</div>';
break;
}
?>
</div><!-- .row -->
</div><!-- .container -->
<?php get_footer(); ?>