21 lines
479 B
Twig
Raw Normal View History

2019-04-02 19:54:29 +02:00
{% 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 %}
</div>
{% endif %}
<div class="e-content">
{{ page.content|raw }}
</div>
</div>