diff options
author | Vitaly Takmazov | 2016-12-20 12:33:51 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-12-20 12:33:51 +0300 |
commit | 8b02f969d3a09e39557474eb90ec821d550e3b1b (patch) | |
tree | 21dcc4d441cb55f7f83daf38b75c25fac163b88e /juick-spring-www/src/main/webapp/WEB-INF/templates/views/posted.html | |
parent | d2de0b9d8cd2ddc6edb24de9d52ee8ab533c7403 (diff) |
juick-spring-www: WIP
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates/views/posted.html')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/posted.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/posted.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/posted.html new file mode 100644 index 00000000..25432c2c --- /dev/null +++ b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/posted.html @@ -0,0 +1,40 @@ +<!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> +<article layout:fragment="content"> + <h1>Сообщение опубликовано</h1> + <p>Поделитесь своим новым постом в социальных сетях:</p> + <p class="social" th:if="${sharetwi} != null"> + <a + th:href="|https://twitter.com/intent/tweet?text=${sharetwi}|" + class="ico32-twi sharenew">Отправить в Twitter</a> + </p> + <p class="social"> + <a th:href="|http://www.livejournal.com/update.bml?subject=${hashtags}&event=${sharelj}&prop_taglist=${tagscomma}|" + target="_blank" class="ico32-lj sharenew">Отправить в LiveJournal</a> + </p> + <p class="social"> + <a th:href="|https://vk.com/share.php?url=${url}|" class="ico32-vk sharenew">Отправить в ВКонтакте</a> + </p> + <p class="social"> + <a th:href="|https://www.facebook.com/sharer/sharer.php?u=${url}|" + class="ico32-fb sharenew">Отправить в Facebook</a> + </p> + <p>Ссылка на сообщение: + <a th:href="|http://juick.com/${mid}|" th:text="|http://juick.com/${mid}|">http://juick.com/12345 + </a> + </p> +</article> + +<aside id="column"> + <p layout:fragment="column" th:replace="views/partial/homecolumn">Main side column</p> +</aside> + +</body> +</html>
\ No newline at end of file |