Parcourir la source

add other posts singles

Kevin il y a 4 ans
Parent
commit
9c18a8ced4

+ 3 - 5
web/app/themes/la_mine/single.php

@@ -13,8 +13,6 @@ $context         = Timber::context();
 $timber_post     = Timber::query_post();
 $context['post'] = $timber_post;
 
-if ( post_password_required( $timber_post->ID ) ) {
-	Timber::render( 'single-password.twig', $context );
-} else {
-	Timber::render( array( 'single-' . $timber_post->ID . '.twig', 'single-' . $timber_post->post_type . '.twig', 'single-' . $timber_post->slug . '.twig', 'single.twig' ), $context );
-}
+$context['posts'] = get_posts();
+
+Timber::render('single.twig', $context );

+ 9 - 2
web/app/themes/la_mine/templates/single.twig

@@ -2,16 +2,23 @@
 
 {% block content %}
 	<div class="content-wrapper">
-		<!-- {{dump(post)}} -->
+
 		<article class="post-type-{{ post.titre}}">
 			<img src="{{ post.image_event}}">
 
 			<section class="article-content">
 				<h1 class="article-h1">{{ post.titre }}</h1>
-
 						<div class="article-body">
 					{{post.description}}
+					{{post.lieu}}
 				</div>
+
+				<div class="other-posts">
+				{% for item in posts %}
+					{% include 'components/thumbnails/thumbnails.twig' %}
+				{% endfor %}
+				</div>
+
 			</section>
 		</article>
 	</div><!-- /content-wrapper -->