38 lines
913 B
PHP
38 lines
913 B
PHP
<?php get_header(); ?>
|
|
|
|
<?php
|
|
$current_post_type = get_post_type();
|
|
|
|
?>
|
|
|
|
<main id="content" class="site-content flex-grow">
|
|
<?php get_template_part('template-parts/post-types/expositions/archive-header'); ?>
|
|
|
|
|
|
<!-- #### LATEST PARUTIONS #### -->
|
|
<?php get_template_part('template-parts/components/archive/latest-parutions', null, array(
|
|
'post_amount' => 1,
|
|
'post_type' => 'expositions',
|
|
));
|
|
?>
|
|
|
|
|
|
<!-- #### ARCHIVE POST GRID #### -->
|
|
<?php get_template_part('template-parts/components/archive/post-grid', null, array(
|
|
'current_post_type' => 'expositions',
|
|
'post_amount' => -1,
|
|
'grid_title' => 'Trouver une exposition',
|
|
)); ?>
|
|
|
|
|
|
<!-- #### SOUTENIR #### -->
|
|
<?php get_template_part('template-parts/compositions/soutenir'); ?>
|
|
|
|
|
|
<!-- #### INFOLETTRE #### -->
|
|
<?php get_template_part('template-parts/compositions/infolettre'); ?>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|