summaryrefslogtreecommitdiff
path: root/src/main/resources/templates/errors
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2025-12-01 16:06:48 +0100
committerGitHub2025-12-01 16:06:48 +0100
commit9a8da248c04f47ff30db6da22b035894294499d3 (patch)
tree3efdd2abfc56265d606a48bec9f170127d6b5f12 /src/main/resources/templates/errors
parentb85f5fe60e9c2809b513304c73a86200c91b1c2d (diff)
fix: show error page (#207)
This shows error page when trying to load unavailable resource.
Diffstat (limited to 'src/main/resources/templates/errors')
-rw-r--r--src/main/resources/templates/errors/404.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/resources/templates/errors/404.html b/src/main/resources/templates/errors/404.html
index 530d030..713239d 100644
--- a/src/main/resources/templates/errors/404.html
+++ b/src/main/resources/templates/errors/404.html
@@ -9,6 +9,9 @@
<div th:replace="~{fragments.html :: nav}"></div>
<main>
<h1>Nichts gefunden</h1>
+ <p>
+ Die angeforderte Ressource oder Seite ist nicht vorhanden.
+ </p>
</main>
<footer th:replace="~{fragments.html :: footer}"></footer>
</body>