Templates und Seiten ein Verzeichnis höher geschoben und thymeleaf/ gelöscht
[website] / dist / projects / html-experimente / kein-layout.html
1 <!DOCTYPE html>
2 <html
3     xmlns="http://www.w3.org/1999/xhtml"
4     xmlns:layout="http://www.thymeleaf.org"
5     xmlns:th="http://www.thymeleaf.org"
6     layout:decorator="templates/layout"
7     th:with="title='Alle Stylings deaktiviert', uri='/projects/html-experimente/kein-layout.html'"
8     >
9   <head layout:fragment="head">
10     <title>HTML-Experimente - Kein Layout</title>
11   </head>
12   <body>
13     <aside layout:fragment="marginalcontent" th:replace="templates/fragments :: marginalcontent">
14       MARGINAL-CONTENT
15     </aside>
16   </body>
17 </html>