agenda.php 550 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * The template for displaying Archive pages.
  4. *
  5. * Used to display archive-type pages if nothing more specific matches a query.
  6. * For example, puts together date-based pages if no date.php file exists.
  7. *
  8. * Learn more: http://codex.wordpress.org/Template_Hierarchy
  9. *
  10. * Methods for TimberHelper can be found in the /lib sub-directory
  11. *
  12. * @package WordPress
  13. * @subpackage Timber
  14. * @since Timber 0.2
  15. */
  16. $timber_post = new Timber\Post();
  17. $context['post'] = $timber_post;
  18. Timber::render( array( 'agenda.twig' ), $context );