17 lines
407 B
Twig
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>
|