forked from LiveCarta/LiveCartaWP
22 lines
344 B
PHP
22 lines
344 B
PHP
<?php
|
|
get_header();
|
|
|
|
if (have_posts()):
|
|
while (have_posts()):
|
|
the_post();
|
|
?>
|
|
|
|
<div class="top-panel empty"></div>
|
|
<div class="cont back-white">
|
|
<div class="text-page">
|
|
<h1><?php the_title(); ?></h1>
|
|
<?php the_content(); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
endwhile;
|
|
endif;
|
|
|
|
get_footer();
|