Umstellung auf Thymeleaf: Schritt 1 - Thymeleaf zum Laufen bekommen
[website] / src / main / webapp / thymeleaf / views / index.html
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
3   <head>
4     <title th:fragment="title">Index</title>
5   </head>
6   <body>
7     <div th:fragment="content">
8       <p>Inhalt der Index-Seite...</p>
9     </div>
10   </body>
11 </html>