aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/popular.html
blob: aae50a8c53097a216cda3d27da053ac3df590071 (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>&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>
</div><!-- /.container -->
{% endblock %}
bgstack15