Hey Guys,
can you explain actual behavior of next/prev.
Probably I do not understand the concept of collection or I'm doing something wrong.
Functions like nextSibling still not working for me.
My pages are marked as @self.sibling.
Screenshot 2016-01-25 12
I'm able to list them by page.collection loop.
{% for child in page.collection %}
<div><a href="{{ child.url }}"> {{child.title}}</a></div>
{% endfor %}
But simple task as page.next or page.nextSibling or page.collection.next or page.collection.nextSibling still not work for me. Where the trouble is?
Can you share small snippets of template how to use that?