diff options
-rw-r--r-- | ishtar_common/templates/404.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ishtar_common/templates/404.html b/ishtar_common/templates/404.html new file mode 100644 index 000000000..8ab3b07de --- /dev/null +++ b/ishtar_common/templates/404.html @@ -0,0 +1,20 @@ +{% load i18n %} +<!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" xml:lang="en" lang="en"> + +<head> + <link rel="shortcut icon" href="{{MEDIA_URL}}/media/images/favicon.png"> + <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} + </title> + <link rel="stylesheet" href="{{MEDIA_URL}}/media/style.css" /> +</head> +<body> +<div> + <h3>{% trans "Page not found" %}</h3> + <p><a href='/'>{% trans "Back to main page" %}</a></p> +</div> +</body> + +</html> + |