26 lines
567 B
Twig
Raw Normal View History

2019-05-09 00:26:27 +02:00
{% set options = { items: {'@page.self': '/nos-references'}, 'limit': 1 } %}
2019-05-27 17:03:03 +02:00
{% set h5 = h5 ?: 'h2' %}
2019-05-09 00:26:27 +02:00
<div id="reco">
{% for p in page.collection(options)%}
2019-06-13 12:45:06 +02:00
<div class="title">
<{{h5}}>{{p.title}}</{{h5}}>
</div>
2019-05-14 19:59:47 +02:00
<div class="txt">
2019-05-28 16:46:46 +02:00
{% for item in p.collection %}
{% set image = item.media.images|first %}
<div class="item">
2019-06-13 12:45:06 +02:00
{% if image %}
2019-05-28 16:46:46 +02:00
{{ image.html('','logo') }}
2019-06-13 12:45:06 +02:00
{% endif %}
2019-05-28 16:46:46 +02:00
<h3>{{item.title}}</h3>
{{item.content}}
</div>
{% endfor %}
2019-05-14 19:59:47 +02:00
</div>
2019-05-28 16:46:46 +02:00
2019-05-09 00:26:27 +02:00
{% endfor %}
</div>