aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/profile_public.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-06 11:09:21 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-06 11:09:21 +0200
commitc8122e1981527a716639561cc3f880764f06387b (patch)
tree56c58229ba294f89870b027dc18585cc19d2dc54 /src/web/templates/profile_public.html
parentImproved layout of the profile page. (diff)
downloadnewspipe-c8122e1981527a716639561cc3f880764f06387b.tar.gz
newspipe-c8122e1981527a716639561cc3f880764f06387b.tar.bz2
newspipe-c8122e1981527a716639561cc3f880764f06387b.zip
The user can now add its twitter page.
Diffstat (limited to 'src/web/templates/profile_public.html')
-rw-r--r--src/web/templates/profile_public.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web/templates/profile_public.html b/src/web/templates/profile_public.html
index ea13ae63..aed5bfcc 100644
--- a/src/web/templates/profile_public.html
+++ b/src/web/templates/profile_public.html
@@ -9,6 +9,9 @@
{% if user.webpage %}
<p>{{ _('Webpage') }}: <a href="{{ user.webpage | safe }}">{{ user.webpage | safe }}</a></p>
{% endif %}
+ {% if user.twitter %}
+ <p>{{ _('Twitter') }}: <a href="{{ user.twitter | safe }}">{{ user.twitter | safe }}</a></p>
+ {% endif %}
</div>
</div>
bgstack15