Files
VDI-Starter/front-page.php
2025-08-22 15:40:01 -05:00

28 lines
324 B
PHP

<?php
/**
* Front Page Template
*
* @package BasicWP
*/
namespace BasicWP;
get_header();
?>
<div class="container my-section lg:my-0 mx-auto">
<div>
<?php
// Content block
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_content();
}
}
?>
</div>
</div>
<?php get_footer(); ?>