diff options
Diffstat (limited to 'clams-server/src/main/resources/templates/404.html')
| -rw-r--r-- | clams-server/src/main/resources/templates/404.html | 51 |
1 files changed, 12 insertions, 39 deletions
diff --git a/clams-server/src/main/resources/templates/404.html b/clams-server/src/main/resources/templates/404.html index 6bbcecd..bb4c4d5 100644 --- a/clams-server/src/main/resources/templates/404.html +++ b/clams-server/src/main/resources/templates/404.html @@ -1,41 +1,14 @@ -<!DOCTYPE html> -<html> -<head> - <meta charset="UTF-8"> - <title>404 - Page Not Found</title> - <link rel="stylesheet" href="/css/common.css"> - <style> - .error-container { - text-align: center; - margin-top: 100px; - } - .error-code { - font-size: 5rem; - margin-bottom: 10px; - opacity: 0.3; - } - </style> -</head> -<body> +{% extends "templates/layout.html" %} - <main class="main-container"> - <div class="error-container"> - <div class="error-code">404</div> - <h1>Page Not Found</h1> - <p>The page you are looking for does not exist.</p> - <p style="margin-top: 40px;"> - <a href="/">Return to Home Page</a> - </p> - </div> - </main> - - <footer> - <p> - <span class="footer-left"><a href="/">eliashaugsbakk.xyz</a></span> - <span class="footer-separator">|</span> - <span class="footer-right"><a href="mailto:[email protected]">[email protected]</a></span> +{% block content %} +<main class="main-container"> + <div class="error-container"> + <div class="error-code">404</div> + <h1>Page Not Found</h1> + <p>The page you are looking for does not exist.</p> + <p class="error-home-link"> + <a href="/">Return to Home Page</a> </p> - </footer> - -</body> -</html> + </div> +</main> +{% endblock %} |
