blob: ac7da17f3562bcec4d30dd98681f666f2ce6f0b0 (
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:if="${#authorization.expression('isAuthenticated()')}" th:text="${title}">Page title</title>
</head>
<body>
<section id="content" th:data-mid="${mid}" style="margin-left: 0; width: 100%">
<th:block layout:fragment="content">
<th:block th:replace="views/partial/thread_message"/>
</th:block>
</section>
</body>
</html>
|