Files
lamine_wp/web/app/themes/la_mine/archive.php
T
2020-07-07 18:25:35 +02:00

17 lines
321 B
PHP

<?php
/**
* template name: archive
*/
$context = Timber::context();
$context['term_page'] = new Timber\Term();
$args = array(
'post_type' => 'post',
'post_status'=>'publish',
);
$context['post'] = Timber::get_post();
$context['posts'] = Timber::get_posts( $args );
Timber::render('archive.twig', $context );