Files
wingedit.pl/wp-content/themes/restly/template-home.php
2024-11-04 20:48:19 +01:00

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