ceinture-culturelle/front-page.php
2024-11-29 13:49:01 +01:00

23 lines
316 B
PHP

<?php
acf_form_head();
get_header();
?>
<div class="container mx-auto my-8">
<?php if ( have_posts() ) : ?>
<?php
while ( have_posts() ) :
the_post();
?>
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php
get_footer();