ceinture-culturelle/page.php
2024-11-12 17:06:49 +01:00

21 lines
247 B
PHP

<?php get_header(); ?>
<div class="container mx-auto my-8">
<?php if ( have_posts() ) : ?>
<?php
while ( have_posts() ) :
the_post();
?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php
get_footer();