summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/404.html
blob: 8ab3b07de0f3322c2733e2917e2c0039dc50023d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>