Files
LiveCartaWP/htdocs/wp-content/themes/lawcarta/page.php
2018-08-16 09:55:53 +03:00

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();