Simple Spring/Thymeleaf-App
[examples/maven-grunt-integration] / src / main / webapp / thymeleaf / b.html
1 <!DOCTYPE html>
2 <html layout:decorator="templates/layout" th:with="title='B'">
3
4 <head>
5
6   <!--/*-->
7   <meta charset="utf-8" />
8   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
9   <meta name="viewport" content="width=device-width, initial-scale=1" />
10   <!--*/-->
11
12   <title>Maven/Grunt-Integration - B</title>
13
14 </head>
15
16 <body>
17
18
19   <article layout:fragment="content">
20     <h1>B</h1>
21     <p>Content of page B.</p>
22   </article>
23
24   <h1>Menu for page B</h1>
25   <ul layout:fragment="menu">
26     <li><a href="#" th:href="@{/}">Home</a></li>
27     <li><a href="#" th:href="@{/a.html}">A</a></li>
28     <li><strong>B</strong></li>
29     <li><a href="#" th:href="@{/c.html}">C</a></li>
30   </ul>
31
32
33 </body>
34
35 </html>