diff options
author | gerv%gerv.net <> | 2002-04-26 02:21:24 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-04-26 02:21:24 +0200 |
commit | a5996961f534b606e2057b901909759cb5d4d3fd (patch) | |
tree | 7da7b3a0670e505f5914788fca178603ac8156ac /template/default/global/header | |
parent | dcba2bd7a21ae0415d1b743c8a8caa0ba517c0da (diff) | |
download | bugzilla-a5996961f534b606e2057b901909759cb5d4d3fd.tar.gz bugzilla-a5996961f534b606e2057b901909759cb5d4d3fd.tar.xz |
Bug 139928 - cvs remove templates from template/default directory. These templates now all live in template/en/default, for l10n purposes.
Diffstat (limited to 'template/default/global/header')
-rwxr-xr-x | template/default/global/header | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/template/default/global/header b/template/default/global/header deleted file mode 100755 index dfb3cc080..000000000 --- a/template/default/global/header +++ /dev/null @@ -1,58 +0,0 @@ -<!-- 1.0@bugzilla.org --> -[% DEFAULT - title = "" - h1 = title - h2 = "" - extra = "" - jscript = "" - style = "" - message = "" -%] -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> - <head> - <title>[% title FILTER html %]</title> - - [% Param('headerhtml') %] - - [% jscript %] - - [% IF style %] - <style type="text/css"> - [% style %] - </style> - [% END %] - - [% IF style_url %] - <link href="[% style_url %]" rel="stylesheet" type="text/css"> - [% END %] - - </head> - - <body [% Param('bodyhtml') %][% " " %][% extra %]> - - [% PerformSubsts(Param('bannerhtml')) %] - -[% IF h1 || h2 %] - <table border="0" cellspacing="0"> - <tr> - <td valign="top" align="left"> - <table border="0" cellpadding="0" cellspacing="2"> - <tr> - <td valign="top" align="left" nowrap> - <font size="+1"><b>[% h1 %]</b></font> - </td> - </tr> - </table> - </td> - <td valign="middle"> </td> - <td valign="middle" align="left">[% h2 %]</td> - </tr> - </table> -[% END %] - -[% IF message %] - <table width="100%" cellspacing="0" cellpadding="5" border="1"><tr><td> - <font color="green">[% message %]</font> - </td></tr></table> -[% END %] |