ceinture-culturelle/index.php
Gilles Van Assche de134050aa Initial commit
2024-11-12 12:05:01 +01:00

21 lines
298 B
PHP

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