File: cell

package info (click to toggle)
libtemplate-perl 2.06-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,924 kB
  • ctags: 474
  • sloc: perl: 13,238; makefile: 55; xml: 7; sh: 5
file content (16 lines) | stat: -rw-r--r-- 624 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[%# html/cell: an empty and orphaned HTML table cell, <td> . . . </td>
  # ARGS:
  #	col	    # background colour (default: none)
  #     align       # horizontal alignment (default: none)
  #     valign      # vertical alignment (default: none)
  #     colspan     # span multiple columns (defualt: none)
  #     content     # box content
-%]
<td
    [%- IF width %] width="[% width %]"[% END %]
    [%- IF col %] bgcolor="[% col %]"[% END %]
    [%- IF colspan %] colspan="[% colspan %]"[% END %]
    [%- IF  align %] align="[% align %]"[% END %]
    [%- IF  valign %] valign="[% valign %]"[% END %]>
[%- content -%]
</td>