reco.html.twig 567 B

12345678910111213141516171819202122232425
  1. {% set options = { items: {'@page.self': '/nos-references'}, 'limit': 1 } %}
  2. {% set h5 = h5 ?: 'h2' %}
  3. <div id="reco">
  4. {% for p in page.collection(options)%}
  5. <div class="title">
  6. <{{h5}}>{{p.title}}</{{h5}}>
  7. </div>
  8. <div class="txt">
  9. {% for item in p.collection %}
  10. {% set image = item.media.images|first %}
  11. <div class="item">
  12. {% if image %}
  13. {{ image.html('','logo') }}
  14. {% endif %}
  15. <h3>{{item.title}}</h3>
  16. {{item.content}}
  17. </div>
  18. {% endfor %}
  19. </div>
  20. {% endfor %}
  21. </div>