wordpress config + law-/live- carta themes

This commit is contained in:
Andrey Morgachev
2018-08-16 09:55:53 +03:00
commit 3b5be35fe8
65 changed files with 5457 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?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();