add other posts singles

This commit is contained in:
Kevin Tessier 2020-05-28 09:27:03 +02:00
parent c8b91521ad
commit 9c18a8ced4
2 changed files with 12 additions and 7 deletions

View File

@ -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 );

View File

@ -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 -->