reco.html.twig 348 B

1234567891011121314
  1. {% set options = { items: {'@page.self': '/nos-references'}, 'limit': 1 } %}
  2. {% set image = page.media.images|first %}
  3. {% set h5 = h5 ?: 'h5' %}
  4. <div id="reco">
  5. {% for p in page.collection(options)%}
  6. <div class="txt">
  7. {{p.content}}
  8. </div>
  9. <div class="title">
  10. <{{h5}}>{{p.title}}</{{h5}}>
  11. </div>
  12. {% endfor %}
  13. </div>