Hi I have the following problem:
I would like to include the page.media.images in my Content-Loop in an ascending manner. I Understand how to get the first one, but not the rest of the pictures. I tried it also with the slice filter and loop.index, but it did not work.
{% for column in page.content|split('<hr />') %}
<div class="content">{{ column }}</div>
<div class="image">{{ page.media.images|slice('~loop.index~',1) }}</div>
{% endfor %}
Any Suggestions?
Thanks a lot!
Niko