agenda.php 302 B

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