2015-12-09 06:44:23 +01:00
|
|
|
<section class="pictures-group baguette">
|
|
|
|
{% for line in section.images %}
|
|
|
|
<div class="pictures-line">
|
|
|
|
{% for image in line %}
|
2016-02-09 07:31:52 +01:00
|
|
|
{% set image = Image(image) %}
|
|
|
|
{{ image.copy() }}
|
2015-12-09 06:44:23 +01:00
|
|
|
<div class="picture">
|
2016-02-09 07:31:52 +01:00
|
|
|
<a href="{{ image }}">
|
|
|
|
<img src="{{ image.generate_thumbnail("x600") }}">
|
2015-12-09 06:44:23 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% if not loop.last %}
|
|
|
|
<div class="separator"></div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|