Templates und Seiten zurück in das Unterverzeichnis /thymeleaf/ verschoben
[website] / dist / thymeleaf / potemkin / html-experimente / seitenkopf.html
diff --git a/dist/thymeleaf/potemkin/html-experimente/seitenkopf.html b/dist/thymeleaf/potemkin/html-experimente/seitenkopf.html
new file mode 100644 (file)
index 0000000..7709b8c
--- /dev/null
@@ -0,0 +1,21 @@
+<!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='Nur das Basis-Layout und die Seitenaufteiltung', uri='/potemkin/html-experimente/seitenkopf.html'"
+    >
+  <head layout:fragment="head">
+    <title>HTML-Experimente - Basis-Layout &amp; Seitenkopf</title>
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" th:remove="all"/>
+    <link rel="stylesheet/less" th:rel="stylesheet" type="text/css" href="../../../css/base.css" th:href="@{/css/base.css}"/>
+    <link rel="stylesheet/less" th:rel="stylesheet" type="text/css" href="../../../css/seitenkopf.css" th:href="@{/css/seitenkopf.css}"/>
+    <script src="../../../js/less-1.7.0.min.js" th:remove="all"></script>
+  </head>
+  <body>
+    <aside layout:fragment="marginalcontent" th:replace="templates/fragments :: marginalcontent">
+      MARGINAL-CONTENT
+    </aside>
+  </body>
+</html>