diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-20 21:43:00 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-09-20 21:43:00 +0200 |
commit | ff272a7afa0e040083a3de88bd8947d61289ad32 (patch) | |
tree | 10ac621d489ce26d1c05e51a806d327eb88fd8c3 /src/web/templates | |
parent | Improved the way we count feeds by link. (diff) | |
download | newspipe-ff272a7afa0e040083a3de88bd8947d61289ad32.tar.gz newspipe-ff272a7afa0e040083a3de88bd8947d61289ad32.tar.bz2 newspipe-ff272a7afa0e040083a3de88bd8947d61289ad32.zip |
Added link to the 'popular' page.
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/layout.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html index 11eca595..c29c7a3a 100644 --- a/src/web/templates/layout.html +++ b/src/web/templates/layout.html @@ -80,6 +80,7 @@ <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ _('Feed') }} <b class="caret"></b></a> <ul class="dropdown-menu"> + <li><a href="{{ url_for("popular") }}">{{ _('Popular') }}</li> <li><a href="{{ url_for("feeds.inactives") }}">{{ _('Inactive') }}</a></li> <li><a href="{{ url_for("articles.history") }}">{{ _('History') }}</a></li> <li><a href="{{ url_for("feeds.feeds") }}">{{ _('All') }}</a></li> @@ -102,6 +103,7 @@ </ul> </li> {% else %} + <li><a href="{{ url_for("popular") }}"><span class="glyphicon glyphicon-bookmark"></span> {{ _('Popular') }}</a></li> <li><a href="{{ url_for("about") }}"><span class="glyphicon glyphicon-question-sign"></span> {{ _('About') }}</a></li> {% endif %} </ul> |