File: /home/crowdandsafety/public_html/wp-content/themes/x/framework/views/integrity/template-blank-2.php
<?php
// =============================================================================
// VIEWS/INTEGRITY/TEMPLATE-BLANK-2.PHP (Container | Header, No Footer)
// -----------------------------------------------------------------------------
// A blank page for creating unique layouts.
// =============================================================================
get_header();
?>
<div class="x-container max width offset">
<div class="x-main full" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-wrap">
<?php x_get_view( 'global', '_content', 'the-content' ); ?>
</div>
</article>
<?php endwhile; ?>
</div>
</div>
<?php
if ( apply_filters( 'x_legacy_cranium_footers', true ) ) {
x_get_view( 'global', '_footer' );
} else {
get_footer();
}
?>