Files
CWC/front-page.php
T
Keith Solomon d7e721f323
Sync TODOs with Issues / sync_todos (push) Successful in 19s
feature: Initial commit
2026-05-02 10:38:21 -05:00

28 lines
316 B
PHP

<?php
/**
* Front Page Template
*
* @package CWC
*/
namespace CWC;
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(); ?>