1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<div
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
class="portlet" id="portlet-references">
<h2>References</h2>
<div class="portletBody portletContent">
<ul style="margin-left: 20px">
<li class="webref" tal:repeat="ref context/references">
<span tal:replace="ref/source">SOURCE</span>:
<a tal:condition="ref/url"
tal:attributes="href ref/url"
tal:content="ref/content/fmt:shorten/25">ref content</a>
<span tal:condition="not: ref/url"
tal:replace="ref/content/fmt:shorten/25">reference content</span>
</li>
</ul>
</div>
</div>
|