loops/system/site/view_macros.pt
helmutm 269df6b860 - portal page with - now fully editable - portal links
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3770 fd906abe-77d9-0310-91a1-e0d9ade77398
2010-03-15 15:23:00 +00:00

33 lines
824 B
XML

<html i18n:domain="loops">
<!-- $Id$ -->
<!-- listings -->
<metal:work define-macro="portal_page">
<metal:title use-macro="view/concept_macros/concepttitle" />
<ul>
<tal:site tal:repeat="row item/portalLinks">
<li><a tal:attributes="href row/url"
tal:content="row/title">My Site</a>
<tal:description condition="row/description"><br />
<i tal:content="structure row/renderedDescription" />
</tal:description>
</li>
</tal:site>
</ul>
</metal:work>
<metal:work define-macro="sites_listing">
<h2 i18n:translate="">loops Sites</h2>
<ul>
<tal:site tal:repeat="row item/sites">
<li><a tal:attributes="href row/url"
tal:content="row/dcTitle">My Site</a></li>
</tal:site>
</ul>
</metal:work>
</html>