carhop__carhop-theme__DEV/archive-recherches.php
Antoine M 57bd7c13e9
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Handling unpublished Recherches post type currently hidden
2026-06-08 15:25:21 +02:00

38 lines
909 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/recherches/archive-header'); ?>
<!-- #### LATEST PARUTIONS #### -->
<?php get_template_part('template-parts/components/archive/latest-parutions', null, array(
'post_amount' => 1,
'post_type' => 'recherches',
));
?>
<!-- #### ARCHIVE POST GRID #### -->
<?php get_template_part('template-parts/components/archive/post-grid', null, array(
'current_post_type' => 'recherches',
'post_amount' => -1,
'grid_title' => 'Trouver une recherche',
)); ?>
<!-- #### SOUTENIR #### -->
<?php get_template_part('template-parts/compositions/soutenir'); ?>
<!-- #### INFOLETTRE #### -->
<?php get_template_part('template-parts/compositions/infolettre'); ?>
</main>
<?php
get_footer();