1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
<!-- Search results -->
<div class="portlet portletThirdWidth"
tal:repeat="themeId python:here.getThemesToList()">
<tal:projects condition="themeId"
define="packages python:here.getPackagesByTheme(themeId)">
<h6>
<a href=""
tal:content="themeId"
tal:attributes="href string:${here/absolute_url}/by-theme/${themeId}"
> </a> </h6>
<tal:packages condition="nocall:packages">
<div class="documentDescription"
tal:content="python:here.getThemeDescription(themeId)">
The available projects in this theme, latest first.
</div> <dl>
<tal:package tal:repeat="package packages">
<dt> <img tal:replace="structure here/product_icon.gif" />
<a tal:attributes="href package/getURL" tal:content="package/Title">Title</a>
</dt>
</tal:package>
</dl>
</tal:packages>
</tal:projects>
</div> |
Partager