15 lines
348 B
Twig
Raw Normal View History

2019-05-09 00:26:27 +02:00
{% set options = { items: {'@page.self': '/nos-references'}, 'limit': 1 } %}
{% set image = page.media.images|first %}
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">
{{p.content}}
</div>
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>
{% endfor %}
</div>