File: //home/globfdxw/public_html/wp-content/themes/alone/page.php
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package WordPress
* @subpackage Alone
* @since Alone 7.0
*/
get_header();
/**
* Hook: alone_page_titlebar_page
*
* @hooked alone_page_titlebar_page_template - 10
*/
do_action( 'alone_page_titlebar_page' );
?>
<main id="main" class="site-main">
<div class="container responsive">
<?php
// Start the Loop.
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
endwhile; // End the loop.
?>
</div>
</main><!-- #main -->
<?php
get_footer();