File: /var/www/html/onlineshop/wp-content/themes/nautica/content-page.php
<?php
/**
* The template used for displaying page content
*
* @package Engotheme
* @subpackage Engo_Theme
* @since EngoTheme 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="engoc-page-title"><?php the_title()?></h1>
<div>
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'nautica' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
) );
edit_post_link( __( 'Edit', 'nautica' ), '<span class="edit-link">', '</span>' );
?>
</div><!-- .entry-content -->
</article><!-- #post-## -->