diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-01 01:50:40 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-01 01:50:40 +0200 |
commit | cc2eac1dcd3991e036875931fb78c609ff9dbbea (patch) | |
tree | b9c95affc22263b96edeff8f9f8b7487c23cdf12 /template/error.html |
First try.
Diffstat (limited to 'template/error.html')
-rw-r--r-- | template/error.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/template/error.html b/template/error.html new file mode 100644 index 0000000..34a4762 --- /dev/null +++ b/template/error.html @@ -0,0 +1,20 @@ +<html> + <head> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> + <title><TMPL_IF NAME=NAME> <TMPL_VAR NAME=NAME> </TMPL_IF></title> + <link href="/css/style.css" media="all" rel="stylesheet" type="text/css" /> + </head> + <body> + <TMPL_IF NAME=NAME> + <p>This is the <span class=error><TMPL_VAR NAME=NAME></span> page. + You are not suppose to see this. If you think it is a bug, please + report it to <a href="mailto:admin@fripost.org">admin@fripost.org</a>. + </p> + </TMPL_IF> + + <TMPL_IF NAME=MESSAGE><p class=error><b><TMPL_VAR NAME=MESSAGE></b></p></TMPL_IF> + + <hr/> + <TMPL_IF NAME=URL><p><a href="<TMPL_VAR NAME=URL>">Back</a></p></TMPL_IF> + </body> +</html> |