no-gal.html.twig 863 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <section id="{{ macro.pageLinkName(child.menu)|hyphenize }}" class="no-gal">
  2. {% if child.title %}
  3. <div class="title">
  4. <h3>{{ child.title }}</h3>
  5. </div>
  6. {% endif %}
  7. {% if child.content %}
  8. <div class="content">
  9. {{ child.content }}
  10. </div>
  11. {% endif %}
  12. <div class="images">
  13. {% for images in child.media.images %}
  14. {% if images.html %}
  15. {{ images.html }}
  16. {% if child.content %}
  17. <div class="content">
  18. {{ child.content }}
  19. </div>
  20. {% endif %}
  21. {% endif %}
  22. {% endfor %}
  23. </div>
  24. {% for item in child.collection %}
  25. <h4>{{ item.title }}</h4>
  26. {{ item.content }}
  27. <div class="images">
  28. {% for images in item.media.images %}
  29. {{ images.html }}
  30. {% endfor %}
  31. </div>
  32. {% endfor %}
  33. </section>