10 lines
271 B
Twig
10 lines
271 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 %}
|
|
<h1>{{p.title}}</h1>
|
|
{{p.content}}
|
|
{% endfor %}
|
|
</section>
|