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

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();