1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<div xmlns:tal="http://xml.zope.org/namespaces/tal" xmlns:i18n="http://xml.zope.org/namespaces/i18n" id="related-pages" class="portlet"> <h2 tal:content="view/title">Menu title</h2> <ul> <tal:link tal:repeat="link view/links"> <li> <a tal:replace="structure link/fmt:icon-link" /> </li> </tal:link> </ul> </div> |