diff options
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates/views/thread.html')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/thread.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/thread.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/thread.html new file mode 100644 index 00000000..ac7da17f --- /dev/null +++ b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/thread.html @@ -0,0 +1,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> + |