diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-06 11:09:21 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-10-06 11:09:21 +0200 |
commit | c8122e1981527a716639561cc3f880764f06387b (patch) | |
tree | 56c58229ba294f89870b027dc18585cc19d2dc54 /src/web/templates/profile_public.html | |
parent | Improved layout of the profile page. (diff) | |
download | newspipe-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.html | 3 |
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> |