correction reco

This commit is contained in:
2019-06-13 12:45:06 +02:00
parent 9978c8eb8a
commit c8d8afe68a
5 changed files with 18 additions and 18 deletions

View File

@ -3,22 +3,23 @@
<div id="reco">
{% for p in page.collection(options)%}
<div class="title">
<{{h5}}>{{p.title}}</{{h5}}>
</div>
<div class="txt">
{% for item in p.collection %}
{% set image = item.media.images|first %}
<div class="item">
{% if image %}
{% if image %}
{{ image.html('','logo') }}
{% endif %}
{% endif %}
<h3>{{item.title}}</h3>
{{item.content}}
</div>
{% endfor %}
</div>
<div class="title">
<{{h5}}>{{p.title}}</{{h5}}>
</div>
{% endfor %}
</div>