aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-20 21:48:00 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-20 21:48:00 +0200
commitdc7e69756b913a94669ca4aad8791fd2c1cfc51a (patch)
tree42c167d6e4fec3f621f0c7f7c037d02ac07cfced /src/web
parentDisplay only the 100 most popular feeds. (diff)
downloadnewspipe-dc7e69756b913a94669ca4aad8791fd2c1cfc51a.tar.gz
newspipe-dc7e69756b913a94669ca4aad8791fd2c1cfc51a.tar.bz2
newspipe-dc7e69756b913a94669ca4aad8791fd2c1cfc51a.zip
Minor improvements fort he public profile template.
Diffstat (limited to 'src/web')
-rw-r--r--src/web/templates/profile_public.html15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/web/templates/profile_public.html b/src/web/templates/profile_public.html
index 0b12b8df..c67a4e91 100644
--- a/src/web/templates/profile_public.html
+++ b/src/web/templates/profile_public.html
@@ -3,16 +3,23 @@
<div class="container">
<h1>{{ user.nickname }}</h1>
<div class="row">
- <div class="col-md-6">
+ <div class="col-md-12">
<p>{{ _('Member since') }} {{ user.date_created | datetime }}.</p>
<p>{{ _('Last seen:') }} {{ user.last_seen | datetime }}.</p>
</div>
</div>
- <div>{{ tag_cloud|safe }}</div>
+ <div class="row">
+ <div class="col-md-6 pull-right">
+ <div>{{ tag_cloud|safe }}</div>
+ </div>
+ </div>
<h2>Feeds</h2>
- {% include "feed_list_simple.html" %}
-
+ <div class="row">
+ <div class="col-md-12">
+ {% include "feed_list_simple.html" %}
+ </div>
+ </div>
</div><!-- /.container -->
{% endblock %}
bgstack15