An die Verwendung mit Thymeproxy angepasst
[website] / dist / thymeleaf / projects / html-experimente / tiny.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='Layout für sehr kleine Bildschirmgrößen', uri='/projects/html-experimente/tiny.html'"
8     >
9   <head layout:fragment="head">
10     <title>HTML-Experimente - Layout TINY</title>
11     <link rel="stylesheet" th:rel="stylesheet" type="text/css" href="../../../css/base.css" th:href="@{/css/base.css}"/>
12     <link rel="stylesheet" th:rel="stylesheet" type="text/css" href="../../../css/tiny.css" th:href="@{/css/tiny.css}"/>
13     <script src="../../../js/less-1.7.0.min.js" th:remove="all"></script>
14   </head>
15   <body>
16     <aside layout:fragment="marginalcontent" th:replace="templates/fragments :: marginalcontent">
17       MARGINAL-CONTENT
18     </aside>
19   </body>
20 </html>