30 lines
709 B
PHP
30 lines
709 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/activites/archive-header'); ?>
|
|
|
|
|
|
|
|
<!-- #### ACTIVITÉS POST GRID #### -->
|
|
<?php get_template_part('template-parts/components/archive/post-grid', null, array(
|
|
'current_post_type' => 'activites',
|
|
'post_amount' => -1,
|
|
'grid_title' => 'Trouver une activité',
|
|
)); ?>
|
|
|
|
|
|
<!-- #### SOUTENIR #### -->
|
|
<?php get_template_part('template-parts/compositions/soutenir'); ?>
|
|
|
|
<!-- #### INFOLETTRE #### -->
|
|
<?php get_template_part('template-parts/compositions/infolettre'); ?>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|