2019-04-02 19:54:29 +02:00
|
|
|
{% set image = page.media.images|first %}
|
|
|
|
|
2019-04-03 15:29:46 +02:00
|
|
|
{% if image %}
|
|
|
|
<div class="bandeau">
|
|
|
|
{{ image.html }}
|
|
|
|
</div>
|
2019-05-01 19:59:32 +02:00
|
|
|
|
|
|
|
{% if header.entete.text == true %}
|
|
|
|
<div class="entete">
|
|
|
|
<div class="entete_c">
|
|
|
|
<h2>{{page.title}}</h2>
|
|
|
|
<h3>{{ header.entete.text }}</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2019-04-03 15:29:46 +02:00
|
|
|
{% endif %}
|
2019-04-09 18:05:36 +02:00
|
|
|
{% if not hero_image_name and not show_sidebar %}
|
|
|
|
<div class="content_s">
|
2019-04-03 15:29:46 +02:00
|
|
|
{% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
|
|
|
|
{% if page.header.subtitle %}
|
|
|
|
<h3 >{{ page.header.subtitle }}</h3>
|
|
|
|
{% endif %}
|
|
|
|
{{ page.content|raw }}
|
2019-04-02 19:54:29 +02:00
|
|
|
</div>
|
2019-04-03 15:29:46 +02:00
|
|
|
{% endif %}
|
2019-04-09 18:05:36 +02:00
|
|
|
{% if not hero_image_name and show_sidebar %}
|
|
|
|
<div class="content">
|
2019-05-01 19:59:32 +02:00
|
|
|
|
|
|
|
{% for images in page.media.images %}
|
|
|
|
{{images}}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
<div class="content_s">
|
|
|
|
{% if header.entete.text == false %}
|
|
|
|
{% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
|
|
|
|
{% endif %}
|
|
|
|
{% if page.header.subtitle %}
|
|
|
|
<h3 >{{ page.header.subtitle }}</h3>
|
|
|
|
{% endif %}
|
|
|
|
{{ page.content|raw }}
|
|
|
|
</div>
|
2019-04-09 18:05:36 +02:00
|
|
|
</div>
|
|
|
|
{% endif %}
|