blob: ddde1baff69a036c7b03c13531a4286659bb7868 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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}">Settings title</title>
</head>
<body>
<section id="content">
<p th:utext="${result}">Settings update status</p>
</section>
<aside id="column">
<p th:replace="views/partial/settings/tabs">Settings navigation</p>
</aside>
</body>
</html>
|