homegrade_theme_production/page.php

18 lines
345 B
PHP

<?php get_header(); ?>
<div class="homegrade-page-container <?php echo $thematiqueColorSlug ? "homegrade-page-container--" . $thematiqueColorSlug : "" ?>">
<?php if (have_posts()) : ?>
<?php
while (have_posts()) :
the_post();
the_content();
?>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_footer();