File: //home/rassvet-tk.ru/public_html/wp-content/themes/rassvettk/page.php
<?php
/**
* The template for displaying all single posts and attachments
*
* @package WordPress
* @subpackage Twenty_Fifteen
* @since Twenty Fifteen 1.0
*/
get_header(); ?>
<div class="container">
<?if(have_posts() ): while (have_posts() ): the_post(); ?>
<div class="row">
<div class="col-md-12">
<h1><? the_title();?></h1>
</div>
<div class="col-md-12 ">
<p><? the_content();?></p>
</div>
</div>
<?endwhile; else:?>
<p><?echo('Записей не найдено')?></p>
<?endif;?>
</div>
<?php get_footer(); ?>