summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2012-01-18 19:35:46 +0100
committerChristian Franke <nobody@nowhere.ws>2012-01-18 19:35:46 +0100
commitd57a42f72e1d3c060bc9ff5f126886d76e6c34ed (patch)
treec41ba6b31f0eee933572a16e7b21e3529ffd6093
parentc9ceddc80ed8d37a3f4da7913ada9c114978f0ac (diff)
Nice up 404 error page
-rw-r--r--sublab_project/templates/404.html20
1 files changed, 7 insertions, 13 deletions
diff --git a/sublab_project/templates/404.html b/sublab_project/templates/404.html
index 3543977..9684874 100644
--- a/sublab_project/templates/404.html
+++ b/sublab_project/templates/404.html
@@ -1,13 +1,7 @@
-<!DOCTYPE HTML>
-<html>
- <head>
- <meta charset="UTF-8">
- <title>sublab - page not found</title>
- <meta name="robots" content="noindex,nofollow">
- </head>
- <body>
- <h1>page not found</h1>
- <p>Hier nix <code>{{ request_path }}</code>.</p>
- <p>Nach hause <a href="/">telefonieren</a>.</p>
- </body>
-</html>
+{% extends 'base.html' %}
+{% block title %}page not found{% endblock %}
+{% block content %}
+ <h1>page not found</h1>
+ <p>Hier nix <code>{{ request_path }}</code>.</p>
+ <p>Nach hause <a href="/">telefonieren</a>.</p>
+{% endblock %}