blog.html.twig 622 B

1234567891011121314151617181920212223242526
  1. {% extends 'partials/base.html.twig' %}
  2. {% set collection = page.collection() %}
  3. {% set image = page.media.images|first %}
  4. {% block body %}
  5. <section id="body" class="section blog-listing">
  6. <section class="header-wrapper">
  7. <div class="bandeau">
  8. {% if image %}
  9. {{image.html}}
  10. {% endif %}
  11. </div>
  12. </section>
  13. <section class="body-wrapper">
  14. <div class="content">
  15. <h2>{{page.title}}</h2>
  16. {{content}}
  17. </div>
  18. {% block sidebar %}
  19. {% include 'partials/sidebar.html.twig' %}
  20. {% endblock %}
  21. </section>
  22. </section>
  23. {% endblock %}