Templates und Seiten zurück in das Unterverzeichnis /thymeleaf/ verschoben
[website] / dist / thymeleaf / potemkin / html-experimente / kein-layout.html
diff --git a/dist/thymeleaf/potemkin/html-experimente/kein-layout.html b/dist/thymeleaf/potemkin/html-experimente/kein-layout.html
new file mode 100644 (file)
index 0000000..bd81938
--- /dev/null
@@ -0,0 +1,18 @@
+<!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='/potemkin/html-experimente/kein-layout.html'"
+    >
+  <head layout:fragment="head">
+    <title>HTML-Experimente - Kein Layout</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" th:remove="all"/>
+  </head>
+  <body>
+    <aside layout:fragment="marginalcontent" th:replace="templates/fragments :: marginalcontent">
+      MARGINAL-CONTENT
+    </aside>
+  </body>
+</html>