diff options
author | Christian Franke <nobody@nowhere.ws> | 2012-01-18 19:35:46 +0100 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2012-01-18 19:35:46 +0100 |
commit | d57a42f72e1d3c060bc9ff5f126886d76e6c34ed (patch) | |
tree | c41ba6b31f0eee933572a16e7b21e3529ffd6093 /sublab_project/templates/404.html | |
parent | c9ceddc80ed8d37a3f4da7913ada9c114978f0ac (diff) |
Nice up 404 error page
Diffstat (limited to 'sublab_project/templates/404.html')
-rw-r--r-- | sublab_project/templates/404.html | 20 |
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 %} |