8 lines
309 B
PHP
8 lines
309 B
PHP
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
<article class="container my-8 mx-auto entry-content single-editor-content <?php echo $thematiqueColorSlug ? "entry-content--" . $thematiqueColorSlug : "" ?>">
|
|
|
|
|
|
<?php the_content() ?>
|
|
</article>
|
|
<?php endwhile; ?>
|
|
<?php endif; ?>
|