File: //home/bristolfilton.co.uk/public_html/wp-content/themes/cactus/page.php
<?php get_header(); ?>
<section class="page-title-bar title-left">
<div class="container">
<hgroup class="page-title">
<h1><?php the_title();?></h1>
</hgroup>
<div class="breadcrumb-nav">
<?php cactus_breadcrumbs();?>
</div>
<div class="clearfix"></div>
</div>
</section>
<div class="page-wrap">
<div class="container">
<div class="page-inner row right-aside">
<div class="col-main">
<section class="post-main" role="main" id="content">
<article class="post-entry text-left">
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/page/content' );
the_posts_pagination( array(
'prev_text' => '<i class="fa fa-arrow-left"></i><span class="screen-reader-text">' . __( 'Previous page', 'cactus' ) . '</span>',
'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'cactus' ) . '</span><i class="fa fa-arrow-right"></i>' ,
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'cactus' ) . ' </span>',
) );
endwhile; // End of the loop.
?>
</article>
<div class="post-attributes">
<!--Comments Area-->
<div class="comments-area text-left">
<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
</div>
</div>
</section>
</div>
<div class="col-aside-left"></div>
<div class="col-aside-right">
<aside class="blog-side left text-left">
<div class="widget-area">
<?php get_sidebar();?>
</div>
</aside>
</div>
</div>
</div>
</div>
<?php get_footer();