14 lines
237 B
PHP
14 lines
237 B
PHP
<?php
|
|
/**
|
|
*Template Name: Template for Home Page
|
|
*/
|
|
get_header();
|
|
?>
|
|
<div class="restly-template-home">
|
|
<?php
|
|
while ( have_posts() ) : the_post();
|
|
the_content();
|
|
endwhile;
|
|
?>
|
|
</div>
|
|
<?php get_footer();
|