2019-04-02 19:54:29 +02:00

17 lines
407 B
Twig

{% set collection = page.collection() %}
{% set image = page.media.images|first %}
{% for item in page.collection if page.template == "footer" %}
{{item.title}}
{% endfor %}
<section id="footer" class="section blog-listing">
{% if image %}
{{image.html}}
{% endif %}
{% for item in collection %}
<h3>{{item.title}}</h3>
{{item.content}}
{% endfor %}
</section>