39 lines
911 B
PHP
39 lines
911 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/outils-pedagogiques/archive-header'); ?>
|
|
|
|
|
|
|
|
<!-- #### LATEST PARUTIONS #### -->
|
|
<?php get_template_part('template-parts/components/archive/latest-parutions', null, array(
|
|
'post_amount' => $post_amount,
|
|
'post_type' => 'outils-pedagogiques',
|
|
));
|
|
?>
|
|
|
|
|
|
<!-- #### POST GRID #### -->
|
|
<?php get_template_part('template-parts/components/archive/post-grid', null, array(
|
|
'current_post_type' => 'outils-pedagogiques',
|
|
'post_amount' => -1,
|
|
'grid_title' => 'Trouver un outil pédagogique',
|
|
)); ?>
|
|
|
|
|
|
<!-- #### SOUTENIR #### -->
|
|
<?php get_template_part('template-parts/compositions/soutenir'); ?>
|
|
|
|
|
|
<!-- #### INFOLETTRE #### -->
|
|
<?php get_template_part('template-parts/compositions/infolettre'); ?>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|