summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/404.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2013-07-17 14:16:44 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2013-07-17 14:16:44 +0200
commit1dd4510288875a73c1669a671d10f690eccad92d (patch)
tree5b26a0a9c1b174d5f363b83c30b78eba4154773f /ishtar_common/templates/404.html
parent38569a486818733cf444e48e781fe60994effecd (diff)
downloadIshtar-1dd4510288875a73c1669a671d10f690eccad92d.tar.bz2
Ishtar-1dd4510288875a73c1669a671d10f690eccad92d.zip
Add default 404
Diffstat (limited to 'ishtar_common/templates/404.html')
-rw-r--r--ishtar_common/templates/404.html20
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>
+