aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-22 07:42:40 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-09-22 07:42:40 +0200
commit9cfeaeef3d26cfb80116b125f53c7cfc584f711e (patch)
tree48605515188895289c33d18de5b36d02bdd3b872
parentUpdated translations. (diff)
downloadnewspipe-9cfeaeef3d26cfb80116b125f53c7cfc584f711e.tar.gz
newspipe-9cfeaeef3d26cfb80116b125f53c7cfc584f711e.tar.bz2
newspipe-9cfeaeef3d26cfb80116b125f53c7cfc584f711e.zip
Missing anchor ending tag added.
-rw-r--r--src/web/templates/layout.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html
index c29c7a3a..5c9eeb76 100644
--- a/src/web/templates/layout.html
+++ b/src/web/templates/layout.html
@@ -80,7 +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("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>
bgstack15