aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/default/layout/collection/grid.tt
blob: 9b7eb497abcb66328d0e74b9aaa79f60e93107dc (plain) (blame)
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
=extends NEXT

=for layout widget

<table class="grid">
  [% call_next %]
</table>

=for layout header

<thead>
  [% call_next %]
</thead>

=for layout header_row

<tr>
  [% call_next %]
</tr>

=for layout header_cell

<th> [% call_next %] </th>

=for layout body

<tbody>

  [% call_next %]

</tbody>

=cut