diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-04 22:17:32 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-04 22:17:40 +0200 |
commit | ff6e499692065df321dc670df37118ba7d701516 (patch) | |
tree | b9e2d0b041d0992dca6ad82e0d191498e0e4061d /template | |
parent | e652956aa8dd6160b078f396e3f89157c15294af (diff) |
HTTP Error handling (for 403 and 404)
Diffstat (limited to 'template')
-rw-r--r-- | template/error_http.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/template/error_http.html b/template/error_http.html new file mode 100644 index 0000000..34d444b --- /dev/null +++ b/template/error_http.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> + <title><TMPL_IF NAME=MESSAGE><TMPL_VAR NAME=MESSAGE><TMPL_ELSE>Error</TMPL_IF></title> + <link href="/css/style.css" media="all" rel="stylesheet" type="text/css" /> + </head> + <body> + <h1><TMPL_VAR NAME=CODE> <TMPL_VAR NAME=MESSAGE></h1> + </body> +</html> |