File: Lists.zpts

package info (click to toggle)
plastex 3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,132 kB
  • sloc: python: 23,341; xml: 18,076; javascript: 7,755; ansic: 46; makefile: 40; sh: 26
file content (35 lines) | stat: -rw-r--r-- 831 bytes parent folder | download | duplicates (5)
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
29
30
31
32
33
34
35
name: itemize
<ul class="itemize">
<li tal:repeat="item self" tal:content="item"></li>
</ul>

name: enumerate
<ol class="enumerate">
<li tal:repeat="item self" tal:content="item" tal:attributes="value item/position"></li>
</ol>

name: description
type: xml
<dl class="description">
<metal:block tal:repeat="item self">
    <dt tal:content="item/attributes/term"></dt>
    <dd tal:content="item"></dd>
</metal:block>
</dl>

name: list trivlist
<table class="list" cellspacing="0" cellpadding="2">
<tr tal:repeat="item self">
<td tal:content="item/attributes/term | self/attributes/defaultlabel"></td>
<td tal:content="item"></td>
</tr>
</table>

name: list
type: xml
<dl class="description">
<metal:block tal:repeat="item self">
    <dt tal:content="item/attributes/term"></dt>
    <dd tal:content="item"></dd>
</metal:block>
</dl>