Files
lamine_wp/web/app/themes/la_mine/agenda.php
T
2020-05-26 12:30:49 +02:00

17 lines
302 B
PHP

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