I want to show something in my template if sibling pages exist... I know how to do it for children:
{% if page.children.count() > 0 %}
But can't work out how for siblings... any ideas? I would have thought this would work:
{% if page.siblings.count() > 0 %}
But it doesn't...
Thanks people :D