Metiers_du_patrimoine_theme/index.php
Nonimart 0ee675e646
All checks were successful
continuous-integration/drone/push Build is passing
Filling unused index
2025-08-13 13:56:27 +02:00

21 lines
236 B
PHP

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