carhop__carhop-theme__DEV/archive-actualites.php
2026-04-08 16:41:28 +02:00

35 lines
854 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/actualites/archive-header'); ?>
<!-- #### ANALYSES ET ETUDES POST GRID #### -->
<?php get_template_part('template-parts/post-types/actualites/archive-grid', null, array(
'current_post_type' => 'actualites',
'post_amount' => -1,
'grid_title' => 'Toutes les actualités',
)); ?>
<!-- #### AUTRES PUBLICATIONS #### -->
<?php get_template_part('template-parts/compositions/autres-publications'); ?>
<!-- #### SOUTENIR #### -->
<?php get_template_part('template-parts/compositions/soutenir'); ?>
<!-- #### INFOLETTRE #### -->
<?php get_template_part('template-parts/compositions/infolettre'); ?>
</main>
<?php
get_footer();