magcms/templates/sections/full-picture.html

13 lines
507 B
HTML
Raw Normal View History

{{ helpers.copy_image(section.image) }}
<section class="full-picture" style="background: transparent url('{{ section.image }}') no-repeat scroll center top / cover;">
2015-12-09 05:23:40 +01:00
{% if section.text %}
<div class="picture-text">
<div class="picture-text-column">
<h1>{{ section.text.title }}</h1>
<h2>{{ section.text.sub_title }}</h2>
<div class="datetime">{{ section.text.date }}</div>
</div>
</div>
2015-12-09 05:23:40 +01:00
{% endif %}
</section>