correction && add form && add slide && add masonry && css

This commit is contained in:
2020-06-07 17:47:49 +02:00
153 changed files with 16750 additions and 162 deletions
+14
View File
@@ -11,6 +11,20 @@ $context['post'] = $post;
$args = 'post_type=post&numberposts=3&orderby=date';
$projet = array(
'post_type' => 'les-projets',
'post_status'=>'publish',
'numberposts' => 3
);
$tpsF = array(
'post_type' => 'les-temps-forts',
'post_status'=>'publish',
'numberposts' => 3
);
$context['projet'] = Timber::get_posts( $projet );
$context['posts'] = Timber::get_posts( $args );
$context['tpsF'] = Timber::get_posts( $tpsF );
Timber::render('accueil.twig', $context);