blog.html.twig 549 B

12345678910111213141516171819202122
  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="start">
  6. <section class="header-wrapper">
  7. {% include 'partials/bandeau.html.twig' %}
  8. </section>
  9. <section class="body-wrapper">
  10. <div class="content">
  11. <h2>{{page.title}}</h2>
  12. {{content}}
  13. </div>
  14. {% block sidebar %}
  15. {% include 'partials/sidebar.html.twig' %}
  16. {% endblock %}
  17. </section>
  18. </section>
  19. {% endblock %}