footer.html.twig 443 B

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