13 lines
565 B
HTML
13 lines
565 B
HTML
{{ helpers.copy_image(section.image) }}
|
|
<section class="full-picture" style="background: transparent url('{{ section.image }}') no-repeat scroll center top / cover;">
|
|
{% if section.text %}
|
|
<div class="picture-text">
|
|
<div class="picture-text-column">
|
|
<h1>{{ section.text.title }}</h1>
|
|
<h2>{{ section.text.sub_title }}</h2>
|
|
{% if section.text.date %}<div class="datetime">{{ section.text.date.strftime("%d %B %Y") }}</div>{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</section>
|