aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/popular.html
blob: c4b42986875b87c001b3868fcd4340ce0e694026 (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