Display Navigation Title of child pages in Sightly
Hello Everyone,
I can display child pages title using the below Sightly code.
<ul data-sly-list="${currentPage.listChildren}">
<li>${item.title}</li>
</ul>Is it possible to list the Navigation title of child pages using Sightly? Tried below logic, But no luck
<ul data-sly-list="${currentPage.listChildren}">
<li>${item.navTitle}</li>
</ul>