📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 12:08:40
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
template-parts
/
content
✏️
Editing: content-template.php
<?php /** * Template Name: Blog Classic * @package Case-Themes */ get_header(); $berich_sidebar = berich()->get_sidebar_args(['type' => 'blog', 'content_col'=> '8']); ?> <div class="container"> <div class="row <?php echo esc_attr($berich_sidebar['wrap_class']) ?>" > <div id="pxl-content-area" class="<?php echo esc_attr($berich_sidebar['content_class']) ?>"> <main id="pxl-content-main"> <?php if ( have_posts() ) { while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content/content' ); } berich()->page->get_pagination(); } else { get_template_part( 'template-parts/content/content', 'none' ); } ?> </main> </div> <?php if ($berich_sidebar['sidebar_class']) : ?> <div id="pxl-sidebar-area" class="<?php echo esc_attr($berich_sidebar['sidebar_class']) ?>"> <div class="pxl-sidebar-sticky"> <?php get_sidebar(); ?> </div> </div> <?php endif; ?> </div> </div> <?php get_footer();
💾 Save Changes
❌ Cancel