aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/webapp/WEB-INF/templates/views/thread.html
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-12-20 15:28:54 +0300
committerGravatar Vitaly Takmazov2016-12-20 15:28:54 +0300
commitebfae6637d88c9d444f39c7fbe43ce4b7ffc130f (patch)
tree5d65fb9e9c7a6d96c210997c0425c43a9a68fa5c /juick-spring-www/src/main/webapp/WEB-INF/templates/views/thread.html
parent3859c9616d0a7a04e68427d173b863161b818140 (diff)
juick-spring-www: WIP
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.html17
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>
+