agenda.php 262 B

1234567891011121314
  1. <?php
  2. $context = Timber::context();
  3. $timber_post = new Timber\Post();
  4. $context['posts'] = new Timber\PostQuery();
  5. $args = array(
  6. 'post_type' => 'post',
  7. );
  8. $context['posts'] = Timber::get_posts( $args );
  9. Timber::render( ['agenda.twig'] , $context );