blob: b1978bf1bec5624c726269293ea407d92d87781a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
<h1>{{ _('Popular feeds') }}</h1>
<ul class="list-group">
{% for feed in popular %}
<li class="list-group-item">
<a href="{{ feed[0] }}">{{ feed[0] }}</a>
<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>
</div><!-- /.container -->
{% endblock %}
|