diff options
author | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2008-02-17 23:05:18 +0100 |
---|---|---|
committer | Arne Georg Gleditsch <argggh@lxr.linpro.no> | 2008-02-17 23:05:18 +0100 |
commit | 32aa8b091f439043ec2a4c7807366cb26eb9de19 (patch) | |
tree | ee64267c7a43aaf412edbf0a9bfcb9f95b871885 /tmpl/bare_error.tt2 | |
parent | dd670fda9351186a1bf51de2a3b8192a9cda301c (diff) |
Improved error handling.
Diffstat (limited to 'tmpl/bare_error.tt2')
-rw-r--r-- | tmpl/bare_error.tt2 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tmpl/bare_error.tt2 b/tmpl/bare_error.tt2 new file mode 100644 index 0000000..03f6aeb --- /dev/null +++ b/tmpl/bare_error.tt2 @@ -0,0 +1,20 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" +"http://www.w3.org/TR/html4/loose.dtd"> +<html lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title id="title">LXR Error</title> + + <style type="text/css"> + div.error { + font-weight: bold; + font-style: italic; + color: #E04040; + } + </style> + + </head> + <body> + <div class="error">[% error | html %]</div> + </body> +</html> |