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