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

24 lines
307 B
PHP

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