diff options
author | Vitaly Takmazov | 2016-12-14 00:11:19 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-12-14 17:27:54 +0300 |
commit | 2a597191ba108b5d9b3757aa002ce5c780ac60ad (patch) | |
tree | d28caa360ffb44a0a805e0eaa1878fcc4c533810 /juick-spring-www/src/main/webapp/WEB-INF | |
parent | 91ee5d2578868125fcaf35d6fe08ef3604640cd6 (diff) |
juick-spring-www: fix templates title
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/index.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/index.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/index.html index d57d6791..e67dcd7f 100644 --- a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/index.html +++ b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/index.html @@ -3,8 +3,7 @@ xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout/mainLayout}"> <head> - <title th:if="${#authorization.expression('isAuthenticated()')}" th:text="#{title.index.user}">Popular</title> - <title th:if="${#authorization.expression('isAnonymous()')}" th:text="#{title.index.anonym}">Popular posts</title> + <title th:if="${#authorization.expression('isAuthenticated()')}" th:text="${title}">Page title</title> </head> <body> |