aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/feeds.html
blob: 805e1b747b8a5fc931f4022b357f0b24ec9e6463 (plain)
1
2
3
4
5
6
7
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <h1>{{ _('You are subscribed to %(feed_count)d feeds.', feed_count=feeds.count()) }} <a href="{{ url_for("feed.form") }}">{{ _('Add') }}</a> {{ _('a feed') }}.</h1>
    {% include "feed_list.html" %}
</div><!-- /.container -->
{% endblock %}
bgstack15