diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-11-04 22:31:53 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2018-11-04 22:31:53 +0100 |
commit | a375c99d1df9b80a8a1bfe778785e6f8649a0cdc (patch) | |
tree | f6cc8d1558835f0d570a6a15ebda2c8adbca621d /src/web/templates | |
parent | Removed now useless stop words lists. (diff) | |
parent | Offers more filtering possibilities on the popular feeds view for the user (diff) | |
download | newspipe-a375c99d1df9b80a8a1bfe778785e6f8649a0cdc.tar.gz newspipe-a375c99d1df9b80a8a1bfe778785e6f8649a0cdc.tar.bz2 newspipe-a375c99d1df9b80a8a1bfe778785e6f8649a0cdc.zip |
Merge branch 'master' of gitlab.com:newspipe/newspipe
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/popular.html | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/src/web/templates/popular.html b/src/web/templates/popular.html index aae50a8c..4b207903 100644 --- a/src/web/templates/popular.html +++ b/src/web/templates/popular.html @@ -1,18 +1,27 @@ {% extends "layout.html" %} {% block content %} <div class="container"> - <h1>{{ _('Popular feeds') }}</h1> - <ul class="list-group"> - {% for feed in popular %} - <li class="list-group-item"> - <a href="{{ feed[0] }}">{{ feed[0] }}</a> - <a href="{{ url_for('feed.bookmarklet', url=feed[0]) }}" > - <span class="glyphicon glyphicon-plus text-muted" title="follow this feed"></span> - <span class="text-muted">{{ _('add this feed') }}</a> - </a> - <span class="badge">{{ feed[1] }}</span> - </li> - {% endfor %} - </ul> + <div class="row"> + <div class="col-md-12"> + <h1>{{ _('Popular feeds') }}</h1> + <a href="{{ url_for('popular', nb_days='all') }}">all</a> ‧ <a href="{{ url_for('popular', nb_days=365) }}">last year</a> ‧ <a href="{{ url_for('popular', nb_days=31) }}">last month</a> + </div> + </div> + <div class="row"> + <div class="col-md-12"> + <ul class="list-group"> + {% for feed in popular %} + <li class="list-group-item"> + <a href="{{ feed[0] }}">{{ feed[0] }}</a> + <a href="{{ url_for('feed.bookmarklet', url=feed[0]) }}" > + <span class="glyphicon glyphicon-plus text-muted" title="follow this feed"></span> + <span class="text-muted">{{ _('add this feed') }}</span> + </a> + <span class="badge">{{ feed[1] }}</span> + </li> + {% endfor %} + </ul> + </div> + </div> </div><!-- /.container --> {% endblock %} |