Find pages without current

Hello, i have twig construction
{% for p in page.find(’/works’).children.order(‘random’).slice(0, 3) %}

But when it echo - i received current page. How find other pages
Снимок экрана 2016-07-27 в 23

If you are trying to get contents from a child page maybe try.

{% for p in page.find(’/works’).children.order(‘random’) %}
##Child Title: {{ p.title }}
##Child URL: {{ p.url }}
{{ p.content }}
{% endfor %}