Hi All,
Below code is retreived and listing available Content Instances from the currentChannel. But its display translation Content as well.
It has to be display current Language lists only. Please advise how to filter it by locale.
<c:if test="${not empty currentChannel}">
<c:forEach var="content" items="${currentChannel.contentInstances}" varStatus="counter">
<templating:contentLink var="linkUrl" oid="${content.system.id}" />
<li style="list-style: outside none none;padding-left: 0;"><a href="${linkUrl}">${content.system.name}</a></li>
</c:forEach>
</c:if>
Thanks
Jayaram