123456789101112131415161718192021222324252627282930313233343536 |
- {% extends 'partials/base.html.twig' %}
- {% set collection = page.collection() %}
- {% set image = page.media.images|first %}
- {% block stylesheets %}
- {% do assets.addCss('theme://css/bricklayer.css') %}
- {{ parent() }}
- {% endblock %}
- {% block body %}
- <section id="body-wrapper" class="section blog-listing">
- <div class="bandeau">
- {% if image %}
- {{image.html}}
- {% endif %}
- </div>
- <div class="content">
- <h2>{{page.title}}</h2>
- {{content}}
- </div>
- {% if show_sidebar %}
- {% block sidebar %}
- {% include 'partials/sidebar.html.twig' %}
- {% endblock %}
- {% endif %}
- <!-- {% for item in page.collection %}
- <h3>{{item.title}}</h3>
- {{item.content}}
- {% endfor %} -->
- </section>
- {% endblock %}
|