23 lines
363 B
PHP
23 lines
363 B
PHP
<?php /* Template Name: Template événements passés */ ?>
|
|
<?php
|
|
get_header();
|
|
?>
|
|
|
|
<div class="container mx-auto my-8">
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
<?php
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
?>
|
|
|
|
<?php get_template_part( 'template-parts/past-events', get_post_format() ); ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
get_footer();
|