Umstellung auf Thymeleaf: Schritt 1 - Thymeleaf zum Laufen bekommen
[website] / src / main / webapp / thymeleaf / views / index.html
diff --git a/src/main/webapp/thymeleaf/views/index.html b/src/main/webapp/thymeleaf/views/index.html
new file mode 100644 (file)
index 0000000..b44963c
--- /dev/null
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
+  <head>
+    <title th:fragment="title">Index</title>
+  </head>
+  <body>
+    <div th:fragment="content">
+      <p>Inhalt der Index-Seite...</p>
+    </div>
+  </body>
+</html>