Hi, I was get following code sample from examples (Root Folder/Examples/Navigation). It is working standalone, but I need no <ul><li> tags, only simple <br> between listed items instead. <div tal:define="siblings here/siblings.py"> <ul tal:condition="siblings"> <li tal:repeat="folder siblings"> <a href="folder" tal:attributes="href folder/absolute_url" tal:content="folder/getId">folder id</a> </li> </ul> <p tal:condition="not:siblings"><b>There are no sibling folders here.</b></p> </div> I have no idea to get out <li><ul> tags from ZPT as shown here (except generating <TR><TD> instead), so I decide to convert this piece of code to DTML, which is much pretty. But I dont know ZPT and my conversion tryouts are out :( Many thanks, Jaroslav Lukesh