diff options
author | Alexander Alexeev | 2016-12-11 13:56:26 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-12-11 18:24:38 +0300 |
commit | f2454d531e9e99c406a513d92702858510fef4b9 (patch) | |
tree | 19090e8f207e875615bec60d3aa65ac6e4e34e12 /juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/footer.html | |
parent | f9d9f6ac709b0dfe1c1e3f711b2fee6a93f33d42 (diff) |
i18n, using SecurityContextHolder for get currentUser (user always not null)
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/footer.html')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/footer.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/footer.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/footer.html index cc165af7..fb53eb20 100644 --- a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/footer.html +++ b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/footer.html @@ -5,10 +5,10 @@ <body layout:fragment="footer"> <div id="footer"> <div id="footer-right"> - <a href="/settings" th:href="@{/settings}" rel="nofollow">Настройки</a> · - <a href="/help/ru/contacts" th:href="@{/help/ru/contacts}" rel="nofollow">Контакты</a> · - <a href="/help/" th:href="@{/help/}" rel="nofollow">Справка</a> · - <a href="/help/ru/adv" th:href="@{/help/ru/adv}" rel="nofollow">Реклама</a> + <a href="/settings" th:href="@{/settings}" th:text="#{link.settings}" rel="nofollow">Настройки</a> · + <a href="/help/ru/contacts" th:href="@{/help/ru/contacts}" th:text="#{link.contacts}" rel="nofollow">Контакты</a> · + <a href="/help/" th:href="@{/help/}" th:text="#{link.help}" rel="nofollow">Справка</a> · + <a href="/help/ru/adv" th:href="@{/help/ru/adv}" th:text="#{link.adv}" rel="nofollow">Реклама</a> </div> <div id="footer-social"> <a href="https://twitter.com/Juick" rel="nofollow" class="ico32-twi">Twitter</a> @@ -16,8 +16,8 @@ <a href="https://www.facebook.com/JuickCom" rel="nofollow" class="ico32-fb">Facebook</a> </div> <div id="footer-left"> - juick.com © 2008-2016 - <th:block th:if="${links != null}"/><br/>Спонсоры: <span th:text="${links}"> </span></th:block> + <a href="http://juick.com">juick.com</a> © 2008-2016 + <th:block th:if="${links != null}"/><br/><span th:text="#{label.sponsors}">Спонсоры:</span><span th:text="${links}"> </span></th:block> </div> </div> <script> |