forked from LiveCarta/LiveCartaWP
22 lines
259 B
PHP
22 lines
259 B
PHP
<?php
|
|
/**
|
|
* Template Name: Home Page
|
|
*/
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<div class="content no-pb">
|
|
<?php
|
|
if (have_posts()):
|
|
while (have_posts()):
|
|
the_post();
|
|
the_content();
|
|
endwhile;
|
|
endif;
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
get_footer();
|