diff options
author | ivan <ivan> | 2003-08-08 05:42:13 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-08-08 05:42:13 +0000 |
commit | e283ab567e6890727e4d8e35c1d8097398678753 (patch) | |
tree | 2b15e95819c245027d1b8cb9f0976fd49b5b4190 /httemplate/elements/table.html | |
parent | ef7bb336cc67f127fb1d77532ad3da1369c0ae36 (diff) |
- (finish) includes! (closes: Bug#551)
- (finish) moving SQL search to including generic elements/search.html
- new elements: menubar.html, header.html, pager.html and table.html
- have masonize process .html files also
Diffstat (limited to 'httemplate/elements/table.html')
-rw-r--r-- | httemplate/elements/table.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/httemplate/elements/table.html b/httemplate/elements/table.html new file mode 100644 index 000000000..3b6108719 --- /dev/null +++ b/httemplate/elements/table.html @@ -0,0 +1,8 @@ +<% + my $color = shift; + if ( $color ) { +%> + <TABLE BGCOLOR="<%= $color %>" BORDER=1 WIDTH="100%" CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999"> +<% } else { %> + <TABLE BORDER=1 CELLSPACING=0 CELLPADDING=2 BORDERCOLOR="#999999"> +<% } %> |