Files
lamine_wp/web/app/themes/la_mine/agenda.php
T
2020-06-20 12:43:15 +02:00

17 lines
423 B
PHP

<?php
/**
* template name: agenda
*/
$context = Timber::context();
$timber_post = new Timber\Post();
$args = array(
'post_type' => 'post',
'post_status'=>'publish',
);
$context['post'] = Timber::get_post();
$context['posts'] = Timber::get_posts( $args );
$context['terms'] = Timber::get_terms(array( 'taxonomy'=> 'category', 'hide_empty' => true, 'parent' => 0));
Timber::render('agenda.twig', $context );