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