15 lines
308 B
Twig
Raw Normal View History

2019-04-02 19:54:29 +02:00
{% set collection = page.collection() %}
{% set image = page.media.images|first %}
2019-05-14 19:59:47 +02:00
<section id="footer" class="section blog-listing">
2019-05-09 00:26:27 +02:00
{% if image %}
{{image.html}}
{% endif %}
2019-04-02 19:54:29 +02:00
2019-05-09 00:26:27 +02:00
{% for item in collection %}
<div class="sub-content ">
2019-04-02 19:54:29 +02:00
{{item.content}}
2019-04-08 18:00:38 +02:00
</div>
2019-05-09 00:26:27 +02:00
{% endfor %}
</section>