11 lines
255 B
Twig
11 lines
255 B
Twig
{% set collection = page.collection() %}
|
|
{% set image = page.media.images|first %}
|
|
|
|
<section id="footer">
|
|
{% for p in page.find('/home').children if p != page %}
|
|
<div class="block">
|
|
{{p.content}}
|
|
</div>
|
|
{% endfor %}
|
|
</section>
|