Files
lamine_wp/web/app/themes/la_mine/agenda.php
T
2020-05-27 18:00:19 +02:00

15 lines
262 B
PHP

<?php
$context = Timber::context();
$timber_post = new Timber\Post();
$context['posts'] = new Timber\PostQuery();
$args = array(
'post_type' => 'post',
);
$context['posts'] = Timber::get_posts( $args );
Timber::render( ['agenda.twig'] , $context );