I'm trying to let people reorder pages from the admin but can't seem to find how.
My pages look like this.
/products (page)
/product1 (page)
/product2 (page)
The header of "products" is:
title: 'Products'
content:
items: '@self.children'
My template looks like this:
{% for page in page.collection() %}
{{ page.content }}
{% endfor %}
From what I gathered after looking a bit, we can't reorder if we put the items: part in the header.
Is there a way to allow users to reorder pages from the admin and still call the children of "Products" in my template?