aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
Diffstat (limited to 'src/web')
-rw-r--r--src/web/templates/popular.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/web/templates/popular.html b/src/web/templates/popular.html
index 6b2e9001..c4b42986 100644
--- a/src/web/templates/popular.html
+++ b/src/web/templates/popular.html
@@ -5,7 +5,12 @@
<ul class="list-group">
{% for feed in popular %}
<li class="list-group-item">
- <a href="{{ feed[0] }}">{{ feed[0] }}</a> <span class="badge">{{ feed[1] }}</span>
+ <a href="{{ feed[0] }}">{{ feed[0] }}</a>&nbsp
+ <a href="{{ url_for('feed.bookmarklet', url=feed[0]) }}" >
+ <span class="glyphicon glyphicon-plus text-muted" title="follow this feed"></span>
+ <span class="text-muted">add this feed</a>
+ </a>
+ <span class="badge">{{ feed[1] }}</span>
</li>
{% endfor %}
</ul>
bgstack15