Hello,
how can I get only one random children from 'item' pages under 'blog' page using TWIG?
Can I modify this example from documentation?
<ul>
{% for post in page.find('/blog').children.order('date', 'desc').slice(0, 5) %}
<li class="recent-posts">
<strong><a href="{{ post.url }}">{{ post.title }}</a></strong>
</li>
{% endfor %}
</ul>
THANKS!