les_projets.php 332 B

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