Files
LiveCartaWP/htdocs/wp-content/themes/lawcarta/page_white.php
2019-02-14 14:06:28 +03:00

21 lines
265 B
PHP

<?php
/**
* Template Name: White Page
*/
get_header();
if (have_posts()):
while (have_posts()):
the_post();
?>
<div class="content no-pb white">
<?= the_content(); ?>
</div>
<?php
endwhile;
endif;
get_footer();