aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-06-09 15:38:35 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-06-09 15:38:35 +0200
commitd51331aaab0b29a560f9953909a489fe9f426ebf (patch)
tree8b4cc892c1f2edf954f1834ed1841686f93bf87f /src/web/templates
parentURLs added via the bookmarklet are shared by default. (diff)
downloadnewspipe-d51331aaab0b29a560f9953909a489fe9f426ebf.tar.gz
newspipe-d51331aaab0b29a560f9953909a489fe9f426ebf.tar.bz2
newspipe-d51331aaab0b29a560f9953909a489fe9f426ebf.zip
Minor update to the layout.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/layout.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html
index 7b003364..73f727c8 100644
--- a/src/web/templates/layout.html
+++ b/src/web/templates/layout.html
@@ -91,10 +91,11 @@
<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') }}</a></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>
+ <li role="presentation" class="divider"></li>
+ <li><a href="{{ url_for("popular") }}">{{ _('Popular') }}</a></li>
</ul>
</li>
<li class="dropdown">
bgstack15