diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-21 18:24:30 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-21 18:24:30 +0100 |
commit | a2437684225c88eca1e56c1ea159b35b8df9b698 (patch) | |
tree | 91238d762103f82df8205acd8ca7b61537fa77da /src/web/templates/feeds.html | |
parent | With the new home page we do not need anymore the link to see all articles of... (diff) | |
download | newspipe-a2437684225c88eca1e56c1ea159b35b8df9b698.tar.gz newspipe-a2437684225c88eca1e56c1ea159b35b8df9b698.tar.bz2 newspipe-a2437684225c88eca1e56c1ea159b35b8df9b698.zip |
Minor improvements to the list of feeds.
Diffstat (limited to 'src/web/templates/feeds.html')
-rw-r--r-- | src/web/templates/feeds.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/feeds.html b/src/web/templates/feeds.html index 9523d43f..805e1b74 100644 --- a/src/web/templates/feeds.html +++ b/src/web/templates/feeds.html @@ -1,7 +1,7 @@ {% extends "layout.html" %} {% block content %} <div class="container"> - <h1>{{ _('You are subscribed to %(feed_count)d feeds.', feed_count=feeds.count()) }} · {{ _('Add a') }} <a href="{{ url_for("feed.form") }}">{{ _('feed') }}</a></h1> + <h1>{{ _('You are subscribed to %(feed_count)d feeds.', feed_count=feeds.count()) }} <a href="{{ url_for("feed.form") }}">{{ _('Add') }}</a> {{ _('a feed') }}.</h1> {% include "feed_list.html" %} </div><!-- /.container --> {% endblock %} |