single.twig 560 B

12345678910111213141516171819202122232425
  1. {% extends "base.twig" %}
  2. {% block content %}
  3. <div class="content-wrapper">
  4. <article class="post-type-{{ post.titre}}">
  5. <img src="{{ post.image_event}}">
  6. <section class="article-content">
  7. <h1 class="article-h1">{{ post.titre }}</h1>
  8. <div class="article-body">
  9. {{post.description}}
  10. {{post.lieu}}
  11. </div>
  12. <div class="other-posts">
  13. {% for item in posts %}
  14. {% include 'components/thumbnails/thumbnails.twig' %}
  15. {% endfor %}
  16. </div>
  17. </section>
  18. </article>
  19. </div><!-- /content-wrapper -->
  20. {% endblock %}