reco.html.twig 562 B

123456789101112131415161718192021222324
  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="txt">
  6. {% for item in p.collection %}
  7. {% set image = item.media.images|first %}
  8. <div class="item">
  9. {% if image %}
  10. {{ image.html('','logo') }}
  11. {% endif %}
  12. <h3>{{item.title}}</h3>
  13. {{item.content}}
  14. </div>
  15. {% endfor %}
  16. </div>
  17. <div class="title">
  18. <{{h5}}>{{p.title}}</{{h5}}>
  19. </div>
  20. {% endfor %}
  21. </div>