Templates und Seiten ein Verzeichnis höher geschoben und thymeleaf/ gelöscht
[website] / dist / projects / html-experimente / kein-layout.html
diff --git a/dist/projects/html-experimente/kein-layout.html b/dist/projects/html-experimente/kein-layout.html
new file mode 100644 (file)
index 0000000..7ea980e
--- /dev/null
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html
+    xmlns="http://www.w3.org/1999/xhtml"
+    xmlns:layout="http://www.thymeleaf.org"
+    xmlns:th="http://www.thymeleaf.org"
+    layout:decorator="templates/layout"
+    th:with="title='Alle Stylings deaktiviert', uri='/projects/html-experimente/kein-layout.html'"
+    >
+  <head layout:fragment="head">
+    <title>HTML-Experimente - Kein Layout</title>
+  </head>
+  <body>
+    <aside layout:fragment="marginalcontent" th:replace="templates/fragments :: marginalcontent">
+      MARGINAL-CONTENT
+    </aside>
+  </body>
+</html>