footer.html.twig 311 B

1234567891011121314
  1. {% set collection = page.collection() %}
  2. {% set image = page.media.images|first %}
  3. <section id="footer cc" class="section blog-listing">
  4. {% if image %}
  5. {{image.html}}
  6. {% endif %}
  7. {% for item in collection %}
  8. <div class="sub-content ">
  9. {{item.content}}
  10. </div>
  11. {% endfor %}
  12. </section>