forked from apluslms/a-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
30 lines (30 loc) · 1 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% load i18n %}
{% load base %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 Not found</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<div class="page-header">
<h1>404 Not found</h1>
</div>
{% include "_messages.html" %}
<div class="alert alert-danger">
{% blocktrans %}
For an unknown reason you arrived somewhere that does not exist.
Please, try again.
{% endblocktrans %}
</div>
</div>
</div>
</div>
{% tracking_html %}
</body>
</html>