Files
LiveCartaWP/htdocs/wp-content/themes/lawcarta/page_home.php
2019-02-14 14:06:28 +03:00

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