summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/404.html
blob: f2c57d496fa073a546807cd400b39d098fa23a82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% load i18n %}<!doctype html>
<html lang="en">
<head>
    <link rel="shortcut icon" href="{{STATIC_URL}}/media/images/favicon.png">
    <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %}
    </title>
    <link rel="stylesheet" href="{{STATIC_URL}}/media/style.css?ver={{VERSION}}" />
</head>
<body>
<div>
  <h3>{% trans "Page not found" %}</h3>
  <p><a href='/'>{% trans "Back to main page" %}</a></p>
</div>
</body>

</html>