blob: 20cb097d3410b628836d497d775894286dd2a64b (
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 layout:fragment="content" th:utext="${result}">Settings update status</p>
</section>
<aside id="column">
<p layout:fragment="column" th:replace="views/partial/settings_tabs">Settings navigation</p>
</aside>
</body>
</html>
|