10 lines
271 B
Twig
Raw Normal View History

2019-04-02 19:54:29 +02:00
{% set collection = page.collection() %}
{% set image = page.media.images|first %}
<section id="footer" class="section blog-listing">
{% for p in page.find('/home').children if p != page %}
<h1>{{p.title}}</h1>
{{p.content}}
{% endfor %}
</section>