25 lines
562 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-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">
{% if image %}
{{ image.html('','logo') }}
{% endif %}
<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
<div class="title">
2019-05-14 19:59:47 +02:00
<{{h5}}>{{p.title}}</{{h5}}>
2019-05-09 00:26:27 +02:00
</div>
2019-05-28 16:46:46 +02:00
2019-05-09 00:26:27 +02:00
{% endfor %}
</div>