lhoist-stay-safe__backend-t.../single.php

22 lines
283 B
PHP

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