diff options
author | Alexander Alexeev | 2016-12-10 04:18:57 +0700 |
---|---|---|
committer | Alexander Alexeev | 2016-12-10 04:18:57 +0700 |
commit | 8e873bad558342b723e215923e585e58eb7dd266 (patch) | |
tree | 16c2e2ddab3cb653c66061f27013e11c8cb4b328 /juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/navigation.html | |
parent | 613b5e1a6c84d7a44e8f5c03464aacdaa98010f8 (diff) |
template layout fixes
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/navigation.html')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/navigation.html | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/navigation.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/navigation.html index bd6359d7..79b41211 100644 --- a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/navigation.html +++ b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/navigation.html @@ -1,38 +1,43 @@ -<header> +<!DOCTYPE html> +<html xmlns:th="http://www.thymeleaf.org" + xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"> + +<body layout:fragment="nav"> <div id="logo"><a href="/">Juick</a></div> <nav id="global"> <ul> - <li><a href="/">Популярные</a></li> - <li><a href="/?show=all" rel="nofollow">Все сообщения</a></li> - <li><a href="/?show=photos" rel="nofollow">Фотографии</a></li> + <li><a href="/" th:href="@{/}">Популярные</a></li> + <li><a href="/?show=all" th:href="@{/?show=all}" rel="nofollow">Все сообщения</a></li> + <li><a href="/?show=photos" th:href="@{/?show=photos}" rel="nofollow">Фотографии</a></li> </ul> </nav> <div id="search"> <form action="/"> - <input type="text" name="search" class="text" placeholder="Поиск" th:value="${search}"/> + <input type="text" name="search" class="text" placeholder="Поиск" th:value="${param.search}"/> </form> </div> <section id="headdiv" th:switch="${visitor.getUid() > 0}"> <th:block th:case="true"> <nav id="user"> <ul> - <li><a href="/?show=my">Моя лента</a></li> - <li><a href="/pm/inbox">Приватные</a></li> - <li><a href="/?show=discuss">Обсуждения</a></li> - <li><a href="/?show=recommended">Рекомендации</a></li> + <li><a href="/?show=my" th:href="@{/?show=my}">Моя лента</a></li> + <li><a href="/pm/inbox" th:href="@{/pm/inbox}">Приватные</a></li> + <li><a href="/?show=discuss" th:href="@{/?show=discuss}">Обсуждения</a></li> + <li><a href="/?show=recommended" th:href="@{/?show=recommended}">Рекомендации</a></li> </ul> </nav> <nav id="actions"> <ul> - <li><a href="/#post">Написать</a></li> - <li><a href="/${visitor.getName()}" th:text="@${visitor.getName()}">@ugnich</a></li> - <li><a href="/logout">Выйти</a></li> + <li><a href="/#post" th:href="@{/#post}">Написать</a></li> + <li><a href="/ugnich" th:href="@{/{userName}(userName=${visitor.name})}" th:text="'@'+${visitor.name}">@ugnich</a></li> + <li><a href="/logout" th:href="@{/logout}">Выйти</a></li> </ul> </nav> </th:block> <th:block th:case="false"> - <p>Чтобы добавлять сообщения и комментарии, <a href="/login">представьтесь</a>. + <p>Чтобы добавлять сообщения и комментарии, <a href="/login" th:href="@{/login}">представьтесь</a>. </p> </th:block> </section> -</header> +</body> +</html> |