JS-Dateien für Rückwärtskompatibilität unter alten Namen zugänglich gemacht
[website] / src / main / webapp / thymeleaf / 404.html
index ab9c294..6c22532 100644 (file)
@@ -1,14 +1,14 @@
 <!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:tiles="http://www.thymeleaf.org">
   <head>
-    <title th:replace="views/404 :: title">TITLE</title>
-    <meta charset="UTF-8"/>
-    <meta name="viewport" content="width=device-width"/>
+    <title tiles:fragment="title">404: Page not found</title>
   </head>
   <body>
-    <div th:replace="templates/header :: fragment">HEADER</div>
-    <h1 th:include="views/404 :: title">TITLE</h1>
-    <div th:replace="views/404 :: content">CONTENT</div>
-    <div th:replace="templates/footer :: fragment">FOOTER</div>
+    <div tiles:fragment="content">
+      <p>We do not know, where you are.</p>
+      <p>And we do not know, why you are here.</p>
+      <p>But we can tell you: WE ARE SORRY!</p>
+      <p>Really.</p>
+    </div>
   </body>
 </html>