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