22 lines
452 B
PHP
22 lines
452 B
PHP
<?php
|
|
/**
|
|
* template name: archive
|
|
*/
|
|
$context = Timber::context();
|
|
$context['term_page'] = new Timber\Term();
|
|
|
|
$today = date('Y-m-d H:i:s');
|
|
|
|
$args = array(
|
|
'post_type' => 'post',
|
|
'post_status'=>'publish',
|
|
'orderby' => 'meta_value',
|
|
'meta_key' => 'informations_debut_event',
|
|
'order' => 'DESC',
|
|
);
|
|
|
|
$context['post'] = Timber::get_post();
|
|
$context['posts'] = Timber::get_posts( $args );
|
|
|
|
Timber::render('archive.twig', $context );
|