diff options
author | Kevin Chabowski <kevin@kch42.de> | 2011-10-05 14:36:01 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2011-10-05 14:36:01 +0200 |
commit | 0f185543bb9851fddc137f81a1e2a1d21589bc83 (patch) | |
tree | c9a3c56ba2166defac508f8d1c67ef81fe4e9789 /ratatoeskr/templates/src/systemtemplates/error.html | |
parent | afe436b25dd935aa2ae3a327027ea04b3c82e5ac (diff) | |
download | ratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.tar.gz ratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.tar.bz2 ratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.zip |
Backend, frontend and 404 handlers partially implemented.
* Backend layout done.
* Frontend theoretically done (untested).
* 404 handler done
* Added textprocessors.php
Diffstat (limited to 'ratatoeskr/templates/src/systemtemplates/error.html')
-rw-r--r-- | ratatoeskr/templates/src/systemtemplates/error.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/error.html b/ratatoeskr/templates/src/systemtemplates/error.html new file mode 100644 index 0000000..c8ece93 --- /dev/null +++ b/ratatoeskr/templates/src/systemtemplates/error.html @@ -0,0 +1,17 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <title>$title</title> + <style type="text/css" media="screen"> + * { font-family: sans-serif; color: #bfbfbf; text-align: center;} + body { background: #3f3f3f; } + </style> +</head> +<body> + <h1><ste:escape>$title</ste:escape></h1> + <img src="$rel_path_to_root/ratatoeskr/cms_style/images/dead_emoticon.png" alt="" /> + <p><ste:escape>$details</ste:escape></p> +</body> +</html> |