27 lines
743 B
PHP
27 lines
743 B
PHP
<?php get_header(); ?>
|
|
|
|
<?php
|
|
$current_post_type = get_post_type();
|
|
|
|
?>
|
|
|
|
<main id="content" class="site-content flex-grow">
|
|
<?php if ($current_post_type === 'analyses-etudes') : ?>
|
|
<?php get_template_part('template-parts/analyses-etudes/archive-header'); ?>
|
|
<?php elseif ($current_post_type === 'expositions') : ?>
|
|
<?php get_template_part('template-parts/expositions/archive-header'); ?>
|
|
<?php endif; ?>
|
|
|
|
<?php get_template_part('template-parts/expositions/archive-latest-parutions', null, array()); ?>
|
|
|
|
<!-- #### SOUTENIR #### -->
|
|
<?php get_template_part('template-parts/compositions/soutenir'); ?>
|
|
|
|
|
|
<!-- #### INFOLETTRE #### -->
|
|
<?php get_template_part('template-parts/compositions/infolettre'); ?>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|