Files
andaira/index.php
2025-07-29 11:08:33 +00:00

20 lines
524 B
PHP

<?php
if ( ! class_exists( 'Timber' ) ) {
echo 'Timber not activated. Make sure you activate the plugin in >
return;
}
$context = Timber::context();
$context['posts'] = Timber::get_posts(array('post_type' => array('post', 'evento', 'galeria', 'audio', 'video', 'publicacion')));
$templates = array( 'index.twig' );
if ( is_home() ) {
array_unshift( $templates, 'home.twig' );
}
if ( is_front_page() ) {
array_unshift( $templates, 'frontpage.twig' );
}
Timber::render( $templates, $context );