28115d70e6748d2d8031626e3747512a94e1a834
[website] / src / main / webapp / thymeleaf / templates / fragments.html
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.thymeleaf.org">
3   <head>
4     <title>Fragments</title>
5     <link rel="stylesheet/less" type="text/css" href="../../less/all.less" th:remove="all"/>
6     <script src="../../js/less-1.5.1.js" th:remove="all"></script>
7   </head>
8   <body>
9     <h1>Explanation fo the german word "Impressum"</h1>
10     <hr />
11     <aside class="m" th:fragment="about">
12       <h1>What the f*#!@ is an <em>Impressum</em> ?!?</h1>
13       The german law enforces the so called <em>Impressum</em> to enable
14       customers to easily find out all juristically relevant informations
15       about the company, that rules a site.
16       <h1>Find out more...</h1>
17       If you just want to learn more about juplo you should better
18       <a href="../about.html" th:href="@{/about.html}" title="Learn more about juplo now">visit our about-pages</a>.
19     </aside>
20     <hr />
21     <h1>Work-in-progress-hint</h1>
22     <hr />
23     <article class="main" layout:fragment="wip(title)">
24       <header><h1 th:text="${title}">PAGE-TITLE</h1></header>
25       <div class="wip" th:fragment="wip">
26         <img class="w" src="/img/comming-soon.png" alt="Comming soon..."/>
27         <p th:include="templates/layout :: maincontent" th:remove="tag">
28           PAGE-CONTENT
29         </p>
30       </div>
31     </article>
32     <hr />
33     <h1>Marginalspalte</h1>
34     <hr />
35     <div th:fragment="marginalcontent" th:remove="tag">
36       <aside class="m">
37         <h1>Other nasty but marginal stuff</h1>
38         <p>
39           Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
40           eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim
41           ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
42           aliquip ex ea commodo consequat. Duis aute irure dolor in
43           reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
44           pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
45           culpa qui officia deserunt mollit anim id est laborum.
46         </p>
47       </aside>
48       <aside class="m">
49         <h1>More nasty stuff</h1>
50         <p>
51           This one is really short!
52         </p>
53       </aside>
54     </div>
55     <hr />
56   </body>
57 </html>