File: //proc/self/cwd/wp-content/themes/writers/template-parts/content-page.php
<?php
/**
* The template used for displaying page content in page.php
*
* Please browse readme.txt for credits and forking information
* @package writers
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('post-content'); ?>>
<?php writers_featured_image_disaplay(); ?>
<header class="entry-header">
<span class="screen-reader-text"><?php the_title();?></span>
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
<div class="entry-meta"></div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'writers' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
</article><!-- #post-## -->