Umstellung auf Thymeleaf: Schritt 3 RELOADED - Thymleaf mit LayoutDialect
[website] / src / main / webapp / thymeleaf / projects / html-experimente / fast-leer-kein-menü-aber-marginalinhalt.html
diff --git a/src/main/webapp/thymeleaf/projects/html-experimente/fast-leer-kein-menü-aber-marginalinhalt.html b/src/main/webapp/thymeleaf/projects/html-experimente/fast-leer-kein-menü-aber-marginalinhalt.html
new file mode 100644 (file)
index 0000000..4081bc7
--- /dev/null
@@ -0,0 +1,38 @@
+<!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"
+    >
+  <head>
+    <title>HTML-Experimente - Fast leere Seite ohne Menü aber mit Marginalspalte</title>
+    <link rel="stylesheet/less" type="text/css" href="../../../less/all.less" th:remove="all"/>
+    <script src="../../../js/less-1.5.1.js" th:remove="all"></script>
+  </head>
+  <body>
+    <ol layout:fragment="breadcrumb">
+      <li class="b"><a class="b" href="../../index.html" th:href="@{/index.html}">Home</a></li>
+      <li class="b"><a class="b" href="../../projects.html" th:href="@{/projects.html}">Projects</a></li>
+      <li class="b"><a class="b" href="../html-experimente.html" th:href="@{/projects/html-experimente.html}">HTML-Experimente</a></li>
+      <li class="b"><strong class="b">Leer, ohne Menü, mit Marginal</strong></li>
+    </ol>
+    <nav layout:fragment="navigation">
+      <hr class="n"/>
+      <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
+      <h1 class="nav">Navigation</h1>
+      <h2 class="nav menu">Section-Menu</h2>
+      <ul id="menu" class="cf">
+        <li class="m blog"><a href="../blog.html" th:href="@{/blog.html}" class="m">Blog</a></li>
+        <li class="m projects"><a href="../projects.html" th:href="@{/projects.html}" class="m selected">Projects</a></li>
+        <li class="m about"><a href="../about.html" th:href="@{/about.html}" class="m">About</a></li>
+      </ul>
+    </nav>
+    <article class="main" layout:fragment="maincontent">
+      <header><h1>Fast leere Seite ohne Menü aber mit Marginalinhalt</h1></header>
+    </article>
+    <aside layout:fragment="marginalcontent" th:replace="templates/fragments :: marginalcontent">
+      MARGINAL-CONTENT
+    </aside>
+  </body>
+</html>