20 lines
550 B
PHP
20 lines
550 B
PHP
<?php
|
|
/**
|
|
* The template for displaying Archive pages.
|
|
*
|
|
* Used to display archive-type pages if nothing more specific matches a query.
|
|
* For example, puts together date-based pages if no date.php file exists.
|
|
*
|
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
|
*
|
|
* Methods for TimberHelper can be found in the /lib sub-directory
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Timber
|
|
* @since Timber 0.2
|
|
*/
|
|
$timber_post = new Timber\Post();
|
|
$context['post'] = $timber_post;
|
|
|
|
Timber::render( array( 'agenda.twig' ), $context );
|