agenda.php 295 B

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