blob: d935b9d4c7e0393becc9aa4c43000a446fd424b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/mainLayout}">
<head>
<title th:text="#{title.help}">Help title</title>
</head>
<body>
<section id="content">
<article layout:fragment="content" th:utext="${help_data}">Help text</article>
</section>
<aside id="column">
<p layout:fragment="column" th:utext="${help_nav}">Help navigation</p>
</aside>
</body>
</html>
|