Issue in fetching the child pages of a specific page (specific path) using only HTL/Sightly
Hi, I want to fetch the child pages of a page when my component is being dropped on the page, so as of now I was using the below piece of code (using the currentPage object) and getting the child pages but here it was dynamic means suppose I drop it on the "en" page then getting the child pages of "en" page and if dropping on "welcome" page then getting it's child pages. (refer the below snap for page hierarchy).

Code used (in the HTML file):
<div class="menuitems">
<ul class="cmp-navigation__group" data-sly-list="${currentPage.listChildren}">
<li class="cmp-navigation__item cmp-navigation__item--level-0">
<a href="#" class="cmp-naviagtion__item-link">${item.title}</a>
</li>
</ul>
</div>
New scenario - Till this point it is working fine but now I want to show/fetch the child pages specific to "welcome" page when the component is dropped on any page let it be - "en", "welcome" and so on (Like I want this to be hard-coded for path - "/content/first-demo/us/en/welcome") always.
So, how that can be done using the HTL only as I don't want to use the Sling model here.
