16 lines
448 B
HTML
Raw Normal View History

{% set image = Image(section.image) %}
2016-02-26 14:39:19 +01:00
{% set caption = section.text %}
{{ image.copy()}}
2015-12-09 05:31:32 +01:00
<section class="bordered-picture baguette">
2016-02-26 14:39:19 +01:00
<div class="caption">
<a href="{{ image }}">
<img src="{{ image }}">
{% if caption %}
<div class="caption__overlay">
<h5 class="caption__overlay__title">{{ caption }}</h5>
</div>
{% endif %}
</div>
</a>
2015-12-09 05:31:32 +01:00
</section>