forked from LiveCarta/LiveCartaWP
16 lines
182 B
PHP
16 lines
182 B
PHP
<?php
|
|
/**
|
|
* Template Name: Home Page
|
|
*/
|
|
|
|
get_header();
|
|
|
|
if (have_posts()):
|
|
while (have_posts()):
|
|
the_post();
|
|
the_content();
|
|
endwhile;
|
|
endif;
|
|
|
|
get_footer();
|