sublog.html.twig 911 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {% extends 'partials/base.html.twig' %}
  2. {% set collection = page.collection() %}
  3. {% set image = page.media.images|first %}
  4. {% block body %}
  5. <section class="header-wrapper" class="section blog-listing">
  6. <div class="bandeau">
  7. {% if image %}
  8. {{image.html}}
  9. {% endif %}
  10. </div>
  11. </section>
  12. <section class="body-wrapper">
  13. <div class="content">
  14. <h2>{{page.title}}</h2>
  15. {{content}}
  16. {% for item in page.collection %}
  17. <div class="sub-content">
  18. {% set child_image = item.media.images|first %}
  19. {% if image %}
  20. {{child_image.html}}
  21. {% endif %}
  22. <h3>{{item.title}}</h3>
  23. {{item.content}}
  24. </div>
  25. {% endfor %}
  26. </div>
  27. {% block sidebar %}
  28. {% include 'partials/sidebar.html.twig' %}
  29. {% endblock %}
  30. </section>
  31. {% endblock %}