35 lines
854 B
PHP
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();
|