This commit is contained in:
2019-04-03 15:29:46 +02:00
parent 03694c1aa6
commit 2ddc3ef8b5
103 changed files with 1503 additions and 6280 deletions

View File

@@ -1,20 +1,16 @@
{% set image = page.media.images|first %}
<div class="content-item h-entry">
{% if image %}
{{ image.html }}
{% endif %}
{% if not hero_image_name %}
<div class="content-title text-center">
{% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
{% if page.header.subtitle %}
<h3 >{{ page.header.subtitle }}</h3>
{% endif %}
{% if image %}
<div class="bandeau">
{{ image.html }}
</div>
{% endif %}
{% if not hero_image_name %}
<div class="content">
{% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
{% if page.header.subtitle %}
<h3 >{{ page.header.subtitle }}</h3>
{% endif %}
{{ page.content|raw }}
</div>
{% endif %}
<div class="e-content">
{{ page.content|raw }}
</div>
</div>
{% endif %}