diff options
author | KillyMXI | 2017-08-20 22:13:22 +0300 |
---|---|---|
committer | KillyMXI | 2017-08-20 22:13:22 +0300 |
commit | 94494c8facde69892c1c22edb89bb401e8d5c0c6 (patch) | |
tree | 8db0a2e8af70650458a8a0d94df9f6a403052897 /juick-www/src/main/webapp/WEB-INF | |
parent | d2dca15f2ce653d3ca0c45f53fb93424e713de87 (diff) |
www: posted message url fix
Diffstat (limited to 'juick-www/src/main/webapp/WEB-INF')
-rw-r--r-- | juick-www/src/main/webapp/WEB-INF/views/post_success.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/juick-www/src/main/webapp/WEB-INF/views/post_success.html b/juick-www/src/main/webapp/WEB-INF/views/post_success.html index 7d9706bf..812904d7 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/post_success.html +++ b/juick-www/src/main/webapp/WEB-INF/views/post_success.html @@ -2,7 +2,7 @@ {% block content %} <h1>Сообщение опубликовано</h1> <p>Поделитесь своим новым постом в социальных сетях:</p> -{%if sharetwi | default('') is not empty %} +{% if sharetwi | default('') is not empty %} <p class="social"> <a href="https://twitter.com/intent/tweet?text={{ sharetwi }}" class="ico32-twi sharenew">Отправить в Twitter</a></p> @@ -10,12 +10,12 @@ <p class="social"> <a href="https://vk.com/share.php?url={{ url | urlencode }}" class="ico32-vk sharenew">Отправить в ВКонтакте</a></p> -{%if facebook | default('') is not empty %} +{% if facebook | default('') is not empty %} <p class="social"> <a href="https://www.facebook.com/sharer/sharer.php?u={{ url | urlencode }}" class="ico32-fb sharenew">Отправить в Facebook</a></p> {% endif %} -<p>Ссылка на сообщение: <a href="{{ url | urlencode }}">{{ url | raw }}</a></p> +<p>Ссылка на сообщение: <a href="{{ url | raw }}">{{ url }}</a></p> {% endblock %} {% block "column" %} {% endblock %}
\ No newline at end of file |