2019-04-08 18:00:38 +02:00

12 lines
318 B
Twig

{% 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 %}
<div class="sub-content">
<h2>{{p.title}}</h2>
{{p.content}}
</div>
{% endfor %}
</section>