File: //home/posscale/www/WP-POS/wp-content/themes/angle/page.php
<?php get_header(); ?>
<?php $entryCoverBackground = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'featured' ); ?>
<?php if ( has_post_thumbnail() ) { ?>
<div class="page-header has-post-cover" style="background-image: url('<?php echo $entryCoverBackground[0] ?>');">
<?php } else { ?>
<div class="page-header">
<?php } ?>
<div class="inner-wrap">
<div class="page-header-content">
<h1 class="archive-title"><?php the_title(); ?></h1>
</div>
</div>
</div>
<div class="inner-wrap">
<main id="main" class="site-main" role="main">
<section class="post-wrap">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php if (option::get('comments_page') == 'on') { ?>
<?php comments_template(); ?>
<?php } ?>
<?php endwhile; // end of the loop. ?>
</section><!-- .single-post -->
</main><!-- #main -->
</div>
<?php get_footer(); ?>