aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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