Hello
I have a parent web page called Application which has 3 child pages under it.
In the Application web page, I am trying to display its child web pages as a clickable tile so that users can navigate to the respective child pages. However only one child web page appears as a result and not the other 2 child pages. I have written the below in the Copy (HTML) area of the Webpage (content page).
{% webform name: 'App Form' %}
<div class="list-group">
{% for child in page.children %}
<a class="list-group-item" href={{ child.url | append: "?id=" | append: request.params['id'] | escape }}>
{{ child.title | escape }}
</a>
{% endfor %}
Could you advise me if I am missing anything please?
Thanks
Arj