Umstellung auf Thymeleaf: Schritt 3 RELOADED - Thymleaf mit LayoutDialect
[website] / src / main / webapp / thymeleaf / projects / html-experimente / seitenaufteilung.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='Nur das Basis-Layout und die Seitenaufteiltung'"
8     >
9   <head layout:fragment="head">
10     <title>HTML-Experimente - Basis-Layout &amp; Seitenaufteilung</title>
11     <link rel="stylesheet/less" th:rel="stylesheet" type="text/css" href="../../../css/base.css" th:href="@{/css/base.css}"/>
12     <link rel="stylesheet/less" th:rel="stylesheet" type="text/css" href="../../../css/seitenaufteilung.css" th:href="@{/css/seitenaufteilung.css}"/>
13     <script src="../../../js/less-1.5.1.js" th:remove="all"></script>
14   </head>
15   <body>
16     <ol layout:fragment="breadcrumb">
17       <li class="b"><a class="b" href="../../index.html" th:href="@{/index.html}">Home</a></li>
18       <li class="b"><a class="b" href="../../projects.html" th:href="@{/projects.html}">Projects</a></li>
19       <li class="b"><a class="b" href="../html-experimente.html" th:href="@{/projects/html-experimente.html}">HTML-Experimente</a></li>
20       <li class="b"><strong class="b">Basis-Layout &amp; Seitenaufteilung</strong></li>
21     </ol>
22     <nav layout:fragment="navigation" th:include="projects/html-experimente :: navigation ('seitenaufteilung')">
23       NAVIGATION
24     </nav>
25     <aside layout:fragment="marginalcontent" th:replace="templates/fragments :: marginalcontent">
26       MARGINAL-CONTENT
27     </aside>
28   </body>
29 </html>