<?php /** * @package gymzone-fitness */ get_header(); ?> <div class="container" id="contentdiv"> <div class="page_content row"> <div class="col-md-4" id="sidebar"> <?php get_sidebar();?> </div><!--col-md-4--> <section class="site-main col-md-8"> <div class="blog-post"> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part('public/template/content/template', 'content'); ?> <?php endwhile; ?> <?php the_posts_pagination();?> <?php else : ?> <h1 class="entry-title"><?php printf( esc_html__( '404 Page Found', 'gymzone-fitness' )); ?></h1> <?php endif; ?> </div><!-- blog-post --> </section> <div class="clearfix"></div> </div><!-- site-aligner --> </div><!-- container --> <?php get_footer(); ?>