diff options
author | Vitaly Takmazov | 2017-04-07 10:29:52 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-04-07 10:29:52 +0300 |
commit | 9820abe11c0c037f50bb2f7ddbb0bd19646264dc (patch) | |
tree | 5a33901fc294546c40b0cdbc65640b041e4c694e /juick-spring-www/src/main/webapp/WEB-INF/templates/views/pm_sent.html | |
parent | 6951e2ad47ed4db3dc7d0b08aeadeb09bc3b994d (diff) |
juick-www: merge juick-spring-www i18n, drop thymeleaf
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates/views/pm_sent.html')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/pm_sent.html | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/pm_sent.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/pm_sent.html deleted file mode 100644 index 8978ff67..00000000 --- a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/pm_sent.html +++ /dev/null @@ -1,42 +0,0 @@ -<!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:text="${title}">Settings title</title> -</head> - -<body> -<section id="content"> - <div layout:fragment="content"> - <form action="/pm/send" method="POST" enctype="multipart/form-data"> - <div class="newpm"> - <div class="newpm-to">To: <input type="text" name="uname" placeholder="username" th:value="${uname}"/></div> - <div class="newpm-body"><textarea name="body" rows="2"></textarea></div> - <div class="newpm-send"><input type="submit" value="OK"/></div> - </div> - </form> - <ul id="private-messages" th:if="#{not lists.isEmpty(msgs)}"> - <li class="msg" th:each="msg:${msgs}"> - <div class="msg-cont"> - <div class="msg-header"> - @<a th:href="|/${msg.getUser().getName()}/|" th:text="${msg.getUser().getName()}">ugnich</a>: - <div class="msg-avatar"> - <a th:href="|/${msg.getUser().getName()}/|"> - <img th:src="|//i.juick.com/a/${msg.getUser().getUid()}.png|" th:alt="${msg.getUser().getName()}"/> - </a> - </div> - <div class="msg-ts" th:text="${msg.getDate()}">01.01.1970</div> - </div> - <div class="msg-txt" th:utext="${msg.getText()}"></div> - </div> - </li> - </ul> - </div> -</section> -<aside id="column"> - <p layout:fragment="column" th:replace="views/partial/homecolumn">Main side column</p> -</aside> - -</body> -</html> |