How can i get certain page childrens in a partial template?
Tried:
{% for p in page.find('/videos').children if p != page %}
<article class="video">
<a href="/" class="d-block mb-3">
<img src="{{ url('theme://images/dummy.jpg') }}" alt="..." class="img-responsive w-100 rounded">
</a>
<a href="/" class="d-block border-bottom">
<p class="h6">{{ p.title }}</p>
</a>
</article>
{% endfor %}
But it didn't work.