diff options
Diffstat (limited to 'src/web/templates/layout.html')
-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> |