footer.html.twig 318 B

1234567891011
  1. {% set collection = page.collection() %}
  2. {% set image = page.media.images|first %}
  3. <section id="footer" class="section blog-listing">
  4. {% for p in page.find('/home').children if p != page %}
  5. <div class="sub-content">
  6. <h2>{{p.title}}</h2>
  7. {{p.content}}
  8. </div>
  9. {% endfor %}
  10. </section>