add twig agenda
This commit is contained in:
@@ -1,19 +1,16 @@
|
||||
<?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_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 );
|
||||
|
||||
Reference in New Issue
Block a user