diff options
-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 %} |