17 lines
302 B
PHP
17 lines
302 B
PHP
<?php
|
|
|
|
$timber_post = new Timber\Post();
|
|
$context['posts'] = new Timber\PostQuery();
|
|
|
|
$context['post'] = $timber_post;
|
|
|
|
$context = Timber::context();
|
|
|
|
$args = array(
|
|
'post_type' => 'post',
|
|
);
|
|
|
|
$context['posts'] = Timber::get_posts( $args );
|
|
|
|
Timber::render( array( 'agenda.twig' ), $context );
|